Android 标签内容与标签重叠
Android Tabcontent overlap with tab
您好,我需要一些有关 Tab 的帮助。有一些布局建议需要咨询。
我当前的标签内容似乎与我的标签重叠。无论如何要防止这种情况发生?
main.xml
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:id="@+id/LinearLayout01"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
</FrameLayout>
</LinearLayout>
</TabHost>
好了,您已将选项卡放入您的选项卡内容中。正确的布局是这样
<LinearLayout>
<TabWidget />
<FrameLayout />
</LinearLayout>
我猜你在关注 this tutorial。第一个 XML 布局应该是你的样子。
您好,我需要一些有关 Tab 的帮助。有一些布局建议需要咨询。 我当前的标签内容似乎与我的标签重叠。无论如何要防止这种情况发生?
main.xml
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:id="@+id/LinearLayout01"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
</FrameLayout>
</LinearLayout>
</TabHost>
好了,您已将选项卡放入您的选项卡内容中。正确的布局是这样
<LinearLayout>
<TabWidget />
<FrameLayout />
</LinearLayout>
我猜你在关注 this tutorial。第一个 XML 布局应该是你的样子。