因此,根据Android文档,Resources.getDrawable()
在Jelly Bean之前的OS版本中存在一个已知的错误,其中别名的可绘制对象无法以正确的密度进行解析(因此,在HDPI设备上,drawable-hdpi中的100px图像被放大为150px)。 ):
注意:在JELLY_BEAN之前,如果此处传递的资源ID是另一个Drawable资源的别名,则此函数将无法正确检索最终配置密度。这意味着,如果别名资源的密度配置与实际资源不同,则返回的Drawable的密度将不正确,从而导致缩放错误。要解决此问题,您可以改为通过TypedArray.getDrawable检索Drawable。将Context.obtainStyledAttributes与包含感兴趣资源ID的数组一起使用以创建TypedArray。
但是,我无法使用指定的说明实际解析Drawable
。我写的一种实用程序方法:
@NonNull
public static Drawable resolveDrawableAlias(@NonNull Context ctx, @DrawableRes int drawableResource) {
final TypedArray a = ctx.obtainStyledAttributes(new int[] { drawableResource });
final Drawable result = a.getDrawable(0);
a.recycle();
return result;
}
当我传递可绘制别名的资源ID时,总是返回null,在
res/values/drawables.xml
中将其定义为:<item name="my_drawable" type="drawable">@drawable/my_drawable_variation</item>
我在这里缺少什么,还是其他解决方法?
编辑:我在下面添加了一个解决方案。
最佳答案
好吧,我发现了以下解决方案似乎可以解决问题:
/**
* Method used as a workaround for a known bug in
* {@link android.content.res.Resources#getDrawable(int)}
* where the density is not properly resolved for Drawable aliases
* on OS versions before Jelly Bean.
*
* @param ctx a context for resources
* @param drawableResource the resource ID of the drawable to retrieve
*
* @return the Drawable referenced by drawableResource
*/
@NonNull
public static Drawable resolveDrawableAlias(@NonNull Context ctx, @DrawableRes int drawableResource) {
final TypedValue value = new TypedValue();
// Read the resource into a TypedValue instance, passing true
// to resolve all intermediate references
ctx.getResources().getValue(drawableResource, value, true);
return ctx.getResources().getDrawable(value.resourceId);
}