如何在Android中设置屏幕底部的选项卡



目前我正在安卓系统中使用选项卡应用程序。这里我提到的代码供您参考,我指的是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"将条形图隐藏在选项卡小部件下,因为它在底部时看起来很难看。

相关内容

  • 没有找到相关文章

最新更新