gpt4 book ai didi

Android 在 android < 5 的自定义 View 中使用矢量可绘制图像

转载 作者:行者123 更新时间:2023-12-02 09:16:17 24 4
gpt4 key购买 nike

我有一个带有 TextViewImageViewCustomView

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>

构建.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 使矢量在自定义 View 中工作?任何帮助或建议将不胜感激。

最佳答案

您可以使用 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() 的第三个参数。

关于Android 在 android < 5 的自定义 View 中使用矢量可绘制图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47047233/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com