我正在使用一个我正在使用checkedTextView的应用程序,它一切都很棒。但我真的不喜欢checkedTextView中“复选框”的布局,它只是很大。有没有办法调整大小或将布局更改为自定义的内容?
我已经尝试了android:checkMark
属性,但这导致它一直被标记,因此一直显示。
答案 0 :(得分:18)
您应该编写一个选择器,而不是使用单个drawable:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:drawable="@drawable/drawable_checked"
android:state_checked="true" />
<item
android:drawable="@drawable/drawable_unchecked"
android:state_checked="false" />
</selector>
然后将其设置为android:checkMark
属性。