有人可以帮助我如何定义“string-array”类型的自定义属性,因为我找不到定义数组的格式。
<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="MyCustomWidget">
<attr name="myarray" format="string-array"/>
</declare-styleable>
</resources>
此代码似乎不起作用。 我的“格式”应该是什么?
答案 0 :(得分:5)
而不是使用
format="string-array"
我用过
format="reference"
并将其称为字符串数组资源。