我有以下相对布局:
<RelativeLayout 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"
android:orientation="horizontal" >
<RadioGroup
<!--stuff-->
</RadioGroup>
<Spinner
android:id="@+id/colour_spinner"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/radioGroup1" />
<TextView
android:id="@+id/colourLabel"
android:text="@string/label_colour"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/radioGroup1"
android:layout_toLeftOf="@+id/colour_spinner"/>
<Spinner
android:id="@+id/country_spinner"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/colour_spinner" />
<TextView
android:id="@+id/countryLabel"
android:text="@string/label_country"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/colour_spinner"
android:layout_toLeftOf="@+id/country_spinner"/>
<Spinner
android:id="@+id/stadium_spinner"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/country_spinner" />
<TextView
android:id="@+id/stadiumLabel"
android:text="@string/label_stadium"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/country_spinner"
android:layout_toLeftOf="@+id/stadium_spinner"/>
希望我在这里尝试做的事情很明显。三个旋转器,每个在前一个下方,每个左侧都有一个标签,理想情况下都整齐地排列。
我目前得到的结果是屏幕上只显示微调器,而我根本没有得到任何文本标签。我在这里做错了什么?我怀疑这与我的布局宽度/高度设置有关?