拥有此自定义视图MyView
我定义了一些自定义属性:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="MyView">
<attr name="normalColor" format="color"/>
<attr name="backgroundBase" format="integer"/>
</declare-styleable>
</resources>
并在布局XML中分配如下:
<com.example.test.MyView
android:id="@+id/view1"
android:text="@string/app_name"
. . .
app:backgroundBase="@drawable/logo1"
app:normalColor="@color/blue"/>
起初我以为我可以使用以下方法检索自定义属性backgroundBase
TypedArray a = context.getTheme().obtainStyledAttributes(attrs, R.styleable.MyView, defStyle, 0);
int base = a.getInteger(R.styleable.MyView_backgroundBase, R.drawable.blank);
仅在未分配属性且返回默认R.drawable.blank
时才有效
当分配app:backgroundBase
时,抛出异常“无法转换为整数类型= 0xn”因为,即使自定义属性格式将其声明为整数,它实际上引用了Drawable
并应按如下方式检索:
Drawable base = a.getDrawable(R.styleable.MyView_backgroundBase);
if( base == null ) base = BitMapFactory.decodeResource(getResources(), R.drawable.blank);
这很有效
现在我的问题:
我真的不想从TypedArray中获取Drawable
,我希望对应于app:backgroundBase
的整数id(在上面的例子中它将是R.drawable.logo1
)。我怎么能得到它?
答案 0 :(得分:43)
事实证明答案就在那里:
TypedArray a = context.getTheme().obtainStyledAttributes(attrs, R.styleable.MyView, defStyle, 0);
int base = a.getResourceId(R.styleable.MyView_backgroundBase, R.drawable.blank);