我想在屏幕底部设计4个标签,但我的问题是标签隐藏在屏幕底部。但是在空活动中会显示标签。看图像。 this image is showing tabs with and without activity
答案 0 :(得分:0)
尝试设置属性
android:layout_above="@id/tabs"
到FrameLayout
修改强>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<TabWidget
android:id="@android:id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true" />
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@android:id/tabs"
android:layout_alignParentTop="true" />
</RelativeLayout>
</TabHost>