Android:如何制作可绘制选择器

时间:2011-04-11 16:42:17

标签: android selector xml-drawable

我觉得这是一个愚蠢的问题,但我还是去了。我有一个图像按钮,我希望每次点击它都能更改它的图像。 API似乎表示,最好的方法是在包含选择器和值的drawable文件夹中创建xml资源。然而,当我去创建一个新的android xml资源时,drawables没有选项。我错过了什么?

2 个答案:

答案 0 :(得分:36)

据我所知,Android XML编辑器不允许您创建XML drawable。您必须转到源选项卡(标记为:filename.xml)并手动粘贴文本。它应该看起来像:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_enabled="false" 
        android:drawable="@drawable/cell_top_selected" />
    <item android:drawable="@drawable/cell_top" />
</selector>

答案 1 :(得分:29)

您也可以尝试将其作为选择器

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">

    <!-- pressed -->
    <item android:drawable="@drawable/button_1_selected" android:state_pressed="true"/>
    <!-- focused -->
    <item android:drawable="@drawable/button_1_normal" android:state_focused="true"/>
    <!-- default -->
    <item android:drawable="@drawable/button_1_normal"/>

</selector>