只是一个简单的问题,我正在使用CheckedTextView,我想知道我可以使用什么代码行来将复选框放在左侧而不是右侧。
这是我目前的CheckedTextview代码:
<CheckedTextView
android:id="@+id/ootChild"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="25dp"
android:textSize="17sp"
android:checkMark="@drawable/btn_check_off"
android:clickable="true"
android:checked="false"
android:onClick="toggle"/>
如果没有简单或快捷的方法,我可以随时使用CheckBox和TextView并将它们放置在我想要的位置。
答案 0 :(得分:22)
在android:drawableLeft="?android:attr/listChoiceIndicatorMultiple"
上添加CheckedTextView
作为XML属性。
答案 1 :(得分:-1)
使用以下语法:
<CheckedTextView
android:id="@+id/ootChild"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="25dp"
android:textSize="17sp"
android:checkMark="@drawable/btn_check_off"
android:clickable="true"
android:checked="false"
android:onClick="toggle"
android:drawableLeft="?android:attr/listChoiceIndicatorMultiple" />