我知道我们可以在其下方放置一个带有独立textView的复选框,但是我们是否可以在复选框下面显示一个复选框的文本?
如果是,可以通过Android UI实现,而不是以编程方式实现吗?
答案 0 :(得分:2)
可以使用CheckedTextView
:
<CheckedTextView
android:drawableTop="@drawable/checkmark"
android:checked="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Checked text"/>
选择器:
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/unchecked" android:state_checked="false"></item>
<item android:drawable="@drawable/checked"></item></selector>