请看下面的代码
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".Form" >
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<TextView
android:id="@+id/gender"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Text To Be Displayed"
android:layout_below="@+id/hipsTxt"
/>
<RadioGroup
android:id="@+id/genderRadio"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_toRightOf="@+id/gender"
android:layout_alignBaseline="@+id/gender"
>
<RadioButton
android:id="@+id/male"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Male" />
<RadioButton
android:id="@+id/female"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Female" />
</RadioGroup>
</RelativeLayout>
</ScrollView>
在这里,我需要将单选按钮显示在TextView
. 但相反,它显示在文本视图下方!这里有什么问题?请帮忙!
PS:安卓版本2.3.3