这是我的XML代码:
<CheckedTextView
android:id="@+id/checkBLC"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/baloncesto"
android:checked="false"
android:checkMark="@drawable/checkbox_blc"/>
我已阅读this post
我试试这个,但没有工作:
android:checkMarkDrawable="drawableTop"
感谢。
答案 0 :(得分:0)
Try android:drawableTop="@drawable/your_image"
<CheckedTextView
android:id="@+id/checkBLC"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/baloncesto"
android:checked="false"
android:drawableTop="@drawable/your_image"
android:checkMark="@drawable/checkbox_blc"/>