是否有可能在某些自定义属性中从可绘制文件夹中获取资源,所以我可以写:
<com.my.custom.View
android:layout_height="50dp"
android:layout_width="50dp"
...
my_custom:drawableSomewhere="@drawable/some_image" />
然后在我的自定义视图类中使用 drawable 简单地执行操作?
实际上有一种属性格式叫做“reference”。所以你会在你的自定义视图类中得到类似的东西:
case R.styleable.PMRadiogroup_images:
icons = a.getDrawable (attr);
break;
在你的 attrs.xml 中有这样的东西:
<attr name="images" format="reference"/>
其中“a”是一个 TypedArray,您可以从视图构造函数中获取的属性中获取。
这里有一个很好的类似答案:Defining custom attrs
见埃德加克的回答;它更好。(我不能删除它,因为它是公认的答案)
这回答了你的问题了吗?
“您可以使用 format="integer"、drawable 的资源 id 和 AttributeSet.getDrawable(...)。”
我使用了它,它适用于 kotlin(编辑粘贴完整类)
class ExtendedFab(context: Context, attrs: AttributeSet?) :
LinearLayout(context, attrs) {
init {
LayoutInflater.from(context).inflate(R.layout.component_extended_fab, this, true)
attrs?.let {
val styledAttributes = context.obtainStyledAttributes(it, R.styleable.ExtendedFab, 0, 0)
val textValue = styledAttributes.getString(R.styleable.ExtendedFab_fabText)
val fabIcon = styledAttributes.getDrawable(R.styleable.ExtendedFab_fabIcon)
setText(textValue)
setIcon(fabIcon)
styledAttributes.recycle()
}
}
/**
* Sets a string in the button
* @param[text] label
*/
fun setText(text: String?) {
tvFabLabel.text = text
}
/**
* Sets an icon in the button
* @param[icon] drawable resource
*/
fun setIcon(icon: Drawable?) {
ivFabIcon.setImageDrawable(icon)
}
}
使用此属性
<declare-styleable name="ExtendedFab">
<attr name="fabText" format="string" />
<attr name="fabIcon" format="reference" />
</declare-styleable>
这是布局
<com.your.package.components.fab.ExtendedFab
android:id="@+id/efMyButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="16dp"
android:elevation="3dp"
android:clickable="true"
android:focusable="true"
app:fabIcon="@drawable/ic_your_icon"
app:fabText="Your label here" />