我创建了一个我想用来创建标签的类(我不想使用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的引用。
我想知道如何手动添加这些引用?感谢。