4

How can I change Radiobutton's direction to rtl in my app ?

(Button align right and the text align left)

I don't want radiobutton lose it's material design.

2 Answers2

3

use android:drawableRight="?android:attr/listChoiceIndicatorSingle" .

 <RadioButton
       android:id="@+id/radioButton"
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:button="@null"
       android:text="rtl button"
       android:drawableRight="?android:attr/listChoiceIndicatorSingle"/>
0
<RadioButton
    android:id="@+id/radioButton"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="item"
    android:layoutDirection="rtl"/>
Milo
  • 3,365
  • 9
  • 30
  • 44
Meysam Keshvari
  • 1,141
  • 12
  • 14