我正在尝试在选项卡的布局中显示一些单选按钮和一个下拉列表,但只显示前三个单选按钮。谁能帮我解决这个问题?这是我的布局代码。当我在模拟器上运行它时,第二个选项卡仅显示三个单选按钮,但它应该显示三个单选按钮、一个文本视图和一个火枪手下拉列表:(
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="fill_parent">
<TabHost android:id="@+id/tabhost"
android:layout_height="match_parent"
android:layout_width="match_parent">
<LinearLayout android:layout_width="match_parent"
android:id="@+id/linearLayout1" android:layout_height="fill_parent"
android:orientation="vertical">
<TabWidget android:layout_width="match_parent"
android:layout_height="wrap_content" android:id="@android:id/tabs"> </TabWidget>
<FrameLayout android:layout_width="match_parent"
android:layout_height="fill_parent" android:id="@android:id/tabcontent">
<LinearLayout android:layout_width="match_parent"
android:layout_height="fill_parent" android:id="@+id/tab1">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="Choose a background colour"
android:id="@+id/textView"
android:layout_marginLeft="10dp"
android:layout_marginTop="10dp"
android:textSize="25dp"
android:textIsSelectable="true" />
</LinearLayout>
<LinearLayout android:layout_width="match_parent"
android:layout_height="fill_parent" android:id="@+id/tab2">
<RadioGroup
android:id="@+id/rgGroup1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<RadioButton android:id="@+id/RB1" android:text="Button1" />
<RadioButton android:id="@+id/RB2" android:text="Button2" />
<RadioButton android:id="@+id/RB3" android:text="Button3" />
</RadioGroup>
<TextView
android:id="@+id/txtRadio"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="RadioGroup: Nothing picked"
/>
<Spinner
android:id="@+id/spnMusketeers"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_marginTop="2dp"
/>
</LinearLayout>
<LinearLayout android:layout_width="match_parent"
android:layout_height="fill_parent" android:id="@+id/tab3">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Add a tab"
android:id="@+id/bAddTab" />
</LinearLayout>
</FrameLayout>
</LinearLayout>
</TabHost>
</LinearLayout>
LinearLayout 的默认方向是水平的,因此您应该添加方向属性:
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:id="@+id/tab2">
您只是忘记指定LinearLayout
的方向,否则默认情况下会将其视为horizontal
。它应该是这样的:
<LinearLayout android:layout_width="match_parent"
android:layout_height="fill_parent"
android:id="@+id/tab1"
android:orientation="vertical">
请注意,我已经添加了android:orientation="vertical"