• RadioButton, как сделать кнопку справа от текста?

    @lazard105
    Нужно использовать атрибуты стиля. Вот так :
    android:drawableRight="?android:attr/listChoiceIndicatorSingle"


    Полное описание вот так:
    <android.support.v7.widget.AppCompatRadioButton
            android:layout_width="match_parent"
            android:button="@null"
            android:drawableRight="?android:attr/listChoiceIndicatorSingle"
            android:layout_height="wrap_content"
            android:id="@+id/radioButton1"
            android:gravity="right"
            android:text="sdf"/>
    Ответ написан
    Комментировать