0

目前我正在 Android 中使用标签栏应用程序。这里我提到了供您参考的代码,我参考了网络,找到的一些链接(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">
4

2 回答 2

1

android:layout_alignParentBottom = "true"只有TabWidgetRelativeLayout.. _

<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>
于 2012-07-20T06:47:24.053 回答
0

只需将. TabWidget _FrameLayout

并用于android:tabStripEnabled="false"将条带隐藏在 tabwidget 下,因为它在底部时看起来很难看。

于 2012-07-20T07:03:12.847 回答