如何设置像图像中给出的标签栏

时间:2013-01-30 09:31:46

标签: android tabbar

我试图像图中给出的那样设置tabbar enter image description here

这是我的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: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="wrap_content"
            android:layout_weight="1" />

        <TabWidget
            android:id="@android:id/tabs"
            android:layout_width="match_parent"
            android:layout_height="30sp"
            android:layout_marginBottom="40sp"
            android:layout_marginLeft="70sp"
            android:layout_marginRight="70sp"
            android:layout_weight="0"
            android:background="@drawable/rounded_corners_white_bg"
            android:tabStripEnabled="false" >
        </TabWidget>

    </LinearLayout>

</TabHost>`

通过设置左边距,右边距和下边距我现在已经将此enter image description here提升了。 在这个图中,标签栏显示在底部,黑色背景颜色,这是我不想要的。 因为它是黑色背景颜色,我的活动的内容是不可见的 任何人都可以帮助我???????????????

1 个答案:

答案 0 :(得分:0)

我尝试了你的布局文件,它给出了左侧,右侧和底部的空间。这里工作正常。你在使用任何其他布局吗??或者可能是由于你的@ drawable / rounded_corners_white_bg。在背景中采取任何其他颜色,如“#cd9089”。