Android 在 android < 5 的自定义视图中使用矢量可绘制图像
Android using vector drawable for image in customview with android < 5
我有一个 CustomView
class 有一个 TextView
和一个 ImageView
喜欢
public class CustomView extends LinearLayout {
private ImageView imgImage;
...
public CustomView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
init(attrs);
}
private void init(AttributeSet attrs) {
LayoutInflater.from(getContext()).inflate(R.layout.custom_layout, this, true);
imgImage = (ImageView) findViewById(R.id.image);
TypedArray ta = getContext().obtainStyledAttributes(attrs, R.styleable.CustomViewStyle);
Drawable drawable = ta.getDrawable(R.styleable.CustomViewStyle_image); // CRASH LINE
ta.recycle();
imgImage.setBackground(drawable);
}
}
在style.xml
<declare-styleable name="CustomViewStyle">
<attr format="string" name="text"/>
<attr format="reference" name="image"/>
</declare-styleable>
build.gradle
android {
defaultConfig {
...
vectorDrawables.useSupportLibrary = true
}
}
当我使用它时
<.CustomView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:image="@drawable/ic_android_black" //ic_android_black is a vector drawable
/>
它将在 android 4.4 中抛出一个 Exception
,它从 android 5
开始运行良好
Caused by: android.content.res.Resources$NotFoundException: File res/drawable/ic_android_black.xml from drawable resource ID #0x7f060054
如何使矢量在 android < 5 的自定义视图中工作?任何帮助或建议将不胜感激。
您可以使用 VectorDrawableCompat.create(Resources, int, Theme)
获取 VectorDrawableCompat
实例(它是 Drawable
的子类)。以您发布的代码为模板,您可以这样写:
TypedArray ta = getContext().obtainStyledAttributes(attrs, R.styleable.CustomViewStyle);
int drawableId = ta.getResourceId(R.styleable.CustomViewStyle_image, 0);
ta.recycle();
if(drawableId != 0){
Drawable drawable = VectorDrawableCompat.create(getResources(), drawableId, null);
}
请注意,您可以将构造函数中的 Context
对象传递给此方法,然后使用 context.getTheme()
而不是 null
作为 create()
的第三个参数。
我有一个 CustomView
class 有一个 TextView
和一个 ImageView
喜欢
public class CustomView extends LinearLayout {
private ImageView imgImage;
...
public CustomView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
init(attrs);
}
private void init(AttributeSet attrs) {
LayoutInflater.from(getContext()).inflate(R.layout.custom_layout, this, true);
imgImage = (ImageView) findViewById(R.id.image);
TypedArray ta = getContext().obtainStyledAttributes(attrs, R.styleable.CustomViewStyle);
Drawable drawable = ta.getDrawable(R.styleable.CustomViewStyle_image); // CRASH LINE
ta.recycle();
imgImage.setBackground(drawable);
}
}
在style.xml
<declare-styleable name="CustomViewStyle">
<attr format="string" name="text"/>
<attr format="reference" name="image"/>
</declare-styleable>
build.gradle
android {
defaultConfig {
...
vectorDrawables.useSupportLibrary = true
}
}
当我使用它时
<.CustomView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:image="@drawable/ic_android_black" //ic_android_black is a vector drawable
/>
它将在 android 4.4 中抛出一个 Exception
,它从 android 5
Caused by: android.content.res.Resources$NotFoundException: File res/drawable/ic_android_black.xml from drawable resource ID #0x7f060054
如何使矢量在 android < 5 的自定义视图中工作?任何帮助或建议将不胜感激。
您可以使用 VectorDrawableCompat.create(Resources, int, Theme)
获取 VectorDrawableCompat
实例(它是 Drawable
的子类)。以您发布的代码为模板,您可以这样写:
TypedArray ta = getContext().obtainStyledAttributes(attrs, R.styleable.CustomViewStyle);
int drawableId = ta.getResourceId(R.styleable.CustomViewStyle_image, 0);
ta.recycle();
if(drawableId != 0){
Drawable drawable = VectorDrawableCompat.create(getResources(), drawableId, null);
}
请注意,您可以将构造函数中的 Context
对象传递给此方法,然后使用 context.getTheme()
而不是 null
作为 create()
的第三个参数。