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.
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.
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"/>
<RadioButton
android:id="@+id/radioButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="item"
android:layoutDirection="rtl"/>