在tabwidget标签上添加视图

时间:2014-08-20 15:32:59

标签: android android-layout

如何在FragmentTabHost中的选项卡上方添加视图(例如,使用textview的linearlayout)?

我需要在ActionBar和TabWidget之间放置视图。我尝试向tabwidget添加保证金,但它只为标签内容添加了保证金。

这是我的xml代码:

<android.support.v4.app.FragmentTabHost
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/tabhost">
<RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">
    <LinearLayout android:layout_width="match_parent"
                  android:layout_height="wrap_content"
                  android:orientation="horizontal"
                  android:id="@+id/paneLocation"
            android:gravity="center_horizontal">
        <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="123123"/>
    </LinearLayout>
    <TabWidget
            android:id="@+id/tabs"
            android:layout_below="@id/paneLocation"
            android:layout_width="match_parent"
            android:layout_height="50dp"
            android:orientation="horizontal"
            android:layout_marginBottom="32dp"
            />
    <FrameLayout
            android:id="@+id/tabFrameLayout"
            android:layout_below="@id/tabs"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            />
    <ProgressBar android:layout_width="wrap_content"
                 android:layout_height="wrap_content"
                 android:id="@+id/pbLoading"
                 android:visibility="invisible"
                 android:layout_centerInParent="true"
            />
</RelativeLayout>

TextView现在覆盖制表符,而不是显示在其上方。

1 个答案:

答案 0 :(得分:0)

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:layout_width="match_parent"
              android:layout_height="match_parent"
              android:orientation="vertical"
              android:background="#fff">
    <TextView android:text="desired view"
        />
    <android.support.v4.app.FragmentTabHost
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="#c9c9c9"
        android:id="@+id/tabhost">

        <FrameLayout
            android:id="@android:id/tabcontent"
            android:layout_width="0dip"
            android:layout_height="0dip"
            android:layout_weight="0"
            />
    </android.support.v4.app.FragmentTabHost>

    <FrameLayout
        android:id="@+id/realtabcontent"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_marginTop="0dp"
        />
</LinearLayout>