我想创建一个看起来像这样的自定义视图:
IMAGE-TEXT-BUTTON
要做到这一点,我想像这样定义我的视图
<resources>
<declare-styleable name="chat_Bubble">
<attr name="text" format="string" />
<attr name="image" format="??"></attr>
</declare-styleable>
</resources>
可悲的是,我不知道用于图像的格式
答案 0 :(得分:0)
如果图片引用了其他资源ID(例如"@drawable/myimage"
),则需要使用reference
。
format="reference"
其他常见格式包括:
https://github.com/android/platform_frameworks_base/blob/master/core/res/res/values/attrs.xml是一个很好的指南。