单选按钮和文本视图布局

Radio Button and text view layout

我希望我的文本视图位于布局的左侧,单选按钮位于右侧。但是当我 运行 我的代码时,它只在右侧显示 textview 和 radiobutton。 以下是我的 xml 文件。

<RelativeLayout

    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:padding="10dp">
    <TextView
        android:id="@+id/tvAnswer1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="40dp"
        android:layout_alignParentLeft="true"
        android:textAppearance="?android:attr/textAppearanceMedium"
        />

    <RadioButton
        android:id="@+id/rbAnswer1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="20dp"
        android:button="@null"
        android:drawableRight="@android:drawable/btn_radio"
        android:layout_alignParentRight="true"

                />
</RelativeLayout>

试试这个

使用带权重的线性布局属性它也有助于设备设计兼容性

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:padding="10dp"
    android:weightSum="5" >

    <TextView
        android:id="@+id/tvAnswer1"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="4"
        android:text="asfafasf"
        android:textAppearance="?android:attr/textAppearanceMedium" />

    <RadioButton
        android:id="@+id/rbAnswer1"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:button="@null"
        android:drawableRight="@android:drawable/btn_radio" />

</LinearLayout>

使用这个。

xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="10dp">
<TextView
    android:id="@+id/tvAnswer1"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="40dp"
    android:layout_alignParentLeft="true"
    android:textAppearance="?android:attr/textAppearanceMedium"
    />

<RadioButton
    android:id="@+id/rbAnswer1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_margin="20dp"
    android:button="@null"
    android:drawableRight="@android:drawable/btn_radio"
    android:llayout_toRightOf="@+id/tvAnswer1"

            />

只要您的单选按钮位于 TextView 的右侧即可。