如何在Android中对齐单选按钮

前端之家收集整理的这篇文章主要介绍了如何在Android中对齐单选按钮 前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

嗨,

我正在尝试在我的android应用程序中使用单选组/单选按钮的以下示例.
http://www.androidpeople.com/android-radiobutton-example/

但是单选按钮位于标签(文本)的左侧.

您能告诉我如何配置它,以便单选按钮位于标签的右侧吗?文本与父对象左对齐,单选按钮与父对象右对齐?

谢谢.

最佳答案
右侧对齐单选按钮:

<RadioButton
                    android:id="@+id/radio0"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
                    android:background="@null"
                    android:button="@null"
                    android:checked="true"
                    android:drawableRight="@drawable/presets_sel"
                    android:padding="12dp"
                    android:text="RadioButton 1" />
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">

    <item android:drawable="@drawable/right_arrow_h" android:state_checked="true"/>
    <item android:drawable="@drawable/right_arrow_h" android:state_pressed="true"/>
    <item android:drawable="@drawable/right_arrow"></item>

</selector>
原文链接:https://www.f2er.com/android/531550.html

猜你在找的Android相关文章