Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android RadioButton Direction

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.

like image 806
Pesare kalak Avatar asked Oct 30 '25 22:10

Pesare kalak


1 Answers

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"/>
like image 131
Milad Mohammad Rezaei Avatar answered Nov 02 '25 15:11

Milad Mohammad Rezaei