我可以将Tab Layout嵌入其他布局吗?

时间:2010-06-23 19:13:32

标签: android

我可以将Tab Layout嵌入其他布局吗?

设计的布局如下:

Root LinearLayout (vertical oritentation)
   A ViewLayout
   A TextLayout
   A Tab layout
   A View Layout
   A TextLayout

我只想在我的布局中使用标签而不是根。有可能吗?

感谢。

2 个答案:

答案 0 :(得分:4)

您的问题是tabHost不是root。看到这段代码 - 它将元素放在标签上方......

<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@android:id/tabhost"
    style="@style/page" >

    <RelativeLayout style="@style/page" >

       <RelativeLayout
            android:id="@+id/rell"
            android:layout_width="360dp"
            android:layout_height="66dp" >

            <ImageView
                android:layout_width="211dp"
                android:layout_height="64dp"
                android:layout_centerHorizontal="true"
                android:layout_centerVertical="true"
                android:src="@drawable/semple_img" />
        </RelativeLayout> 

        <TabWidget
            android:id="@android:id/tabs"
            android:layout_width="fill_parent"
            android:layout_height="61dp"
            android:layout_below="@id/rell">
               </TabWidget>

        <FrameLayout
            android:id="@android:id/tabcontent"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_below="@android:id/tabs" >
        </FrameLayout>
    </RelativeLayout>

</TabHost>

答案 1 :(得分:2)

是的,这是可能的。在你的xml中,你只需将tabhost放在你想要的任何地方。你有使用xml的困难吗?