选择器有9个补丁

时间:2010-11-16 07:43:57

标签: android

我尝试为CheckBox创建选择器并用选择器替换android:按钮。 在选择器中我有两个9patch图像,但由于某种原因不能正常工作。 9patch图像还可以。 这是选择器代码:

<selector android:constantSize="false"
  xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_checked="false"
       android:drawable="@drawable/bopen" />

    <item android:state_checked="true" 
     android:drawable="@drawable/bclose" />

    <item android:drawable="@drawable/bclose" />
</selector>

我该怎么办?

1 个答案:

答案 0 :(得分:0)

第二行缺少选择器状态,因此您可能会看到选择器出现问题,对吗?