目前我正在安卓系统中使用选项卡应用程序。这里我提到的代码供您参考,我指的是web,找到的一些链接(android:layout_alignParentBottom="true")在TabWidget中插入这一行,但选项卡仅在顶部可见,所以请帮助我
提前感谢
<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#EBF1FF">
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TabWidget android:id="@android:id/tabs"
android:layout_width="fill_parent"
=========> android:layout_alignParentBottom = "true" <=======
android:layout_height="wrap_content"
/>
<FrameLayout android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
只有当TabWidget
位于RelativeLayout
内部时,android:layout_alignParentBottom = "true"
才能工作。。
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TabWidget android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_alignParentBottom = "true"
android:layout_height="wrap_content" />
<FrameLayout android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
</RelativeLayout>
只需将TabWidget
放在FrameLayout
之后。
使用android:tabStripEnabled="false"
将条形图隐藏在选项卡小部件下,因为它在底部时看起来很难看。