我希望我的文本视图位于我的布局左侧,单选按钮位于右侧。但是当我运行我的代码时,它只显示右侧的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>
答案 0 :(得分:0)
试试这个
使用具有权重属性的线性布局,这也有助于设备设计兼容性
<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>
答案 1 :(得分:0)
使用此功能。
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的右侧。