Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android CheckedTextView Checkbox on Left

Just a quick simple question, I am using CheckedTextView and I was wondering what, if any, line of code I could use to place the check box on the left side instead of the right side.

Here is my current CheckedTextview Code:

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

If there isn't an easy or quick way to do it I can always just use a CheckBox and TextView and place them how I want them.

like image 644
Mowza2k2 Avatar asked Jun 04 '14 06:06

Mowza2k2


1 Answers

Add android:drawableLeft="?android:attr/listChoiceIndicatorMultiple" as an XML attribute on your CheckedTextView.

like image 106
CodeMonkey Avatar answered Nov 20 '22 15:11

CodeMonkey