使用枚举作为自定义XML属性

时间:2013-04-11 08:12:39

标签: android android-layout android-custom-view

我想在我的项目中使用自定义组件,我想将它添加到下面的枚举属性中,我该怎么做?

<com.abb.abbcustomcompanents.buttons.AbbButton
        android:id="@+id/abbBtn1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" 
        app:Type="How can i use enum here"
        />

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <declare-styleable name="abbButton">
        <attr name="Type" format="enum"/>
        <attr name="onAction" format="string"/>
    </declare-styleable>
</resources>

谢谢!

2 个答案:

答案 0 :(得分:63)

前:

<attr name="myProperty" format="enum">
         <enum name="None" value="0"/>
         <enum name="One" value="1"/>
         <enum name="Two" value="2"/>
         <enum name="Three" value="3"/>
</attr>

像这样使用:

<YourCustomView
    ...
    app:myProperty="One"/>

参考

https://stackoverflow.com/a/15231645/1329126

答案 1 :(得分:4)

XML内部的顺序问题,至少是eclipse。在你的声明风格上方(或内部)定义你的枚举......不在下面。

<attr name="quality">
    <enum name="Good" value="1" />
    <enum name="Better" value="2" />
    <enum name="Best" value="3" />
</attr>

<declare-styleable name="SquareView">
    <attr name="quality" />
</declare-styleable>

<declare-styleable name="CircleView">
    <attr name="quality" />
</declare-styleable>

我有一个很长的枚举,所以我把它放在XML的末尾以提高可读性。它会正确解析但在设计模式下拒绝值。