如何手动将TabWidget和FrameLayout添加到TabHost?

时间:2012-03-22 08:04:15

标签: android android-layout tabs

我创建了一个我想用来创建标签的类(我不想使用Activity)。现在,我的tabs.xml文件包含:

<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/tab_host"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical"
    android:padding="5dp" >

    <TabWidget
        android:id="@+id/tabs"                    //Not @android:id="@android:id/tabs
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" />

    <FrameLayout
        android:id="@+id/tabcontent"           //Not@android:id="@android:id/tabcontent
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" >

        <include 
            android:id="@+id/tab_horizontal_scroll" layout="@layout/gallerymodule"/>

    </FrameLayout>

</LinearLayout>

</TabHost>

据我所知,TabHost对象不会检索对TabWidget和FrameLayout的引用。

我想知道如何手动添加这些引用?感谢。

1 个答案:

答案 0 :(得分:0)

请参阅此链接我认为这会对您有帮助.. here

...谢谢