如何在 CheckedTextView 的文本上方插入 drawable?

How to insert the drawable above the text in CheckedTextView?

这是我的 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"

谢谢。

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"/>