我想将自定义设计的复选框添加到对话框中。Dialogs 视图设置为 TableLayout 并且行数是动态的。普通复选框太大,所以我创建了具有不同状态可绘制对象的自定义选择器(checkbox.xml):
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_checked="true" android:state_focused="true"
android:drawable="@drawable/checkbox_on_background_focus_yellow"/>
<item android:state_checked="false" android:state_focused="true"
android:drawable="@drawable/checkbox_off_background_focus_yellow"/>
<item android:state_checked="false" android:drawable="@drawable/checkbox_off_background"/>
<item android:state_checked="true" android:drawable="@drawable/checkbox_on_background"/>
并将其添加到我的自定义复选框构造函数中:
setButtonDrawable(R.drawable.checkbox);
如果复选框具有焦点,一切似乎都可以正常工作,但外观不会退回到默认布局:
我已经在使用 xml 并切换/添加了一些状态,但似乎没有任何效果。
我该如何解决这个问题,以便在复选框没有焦点并且表格单元格中的内容没有默认复选框大的情况下使用我的图像?
在此先感谢,丹尼