我正在使用android 4.0开发平板电脑的示例应用程序。此应用程序没有标题栏/操作栏,并具有全屏模式。
在这个应用程序中,我使用Tabwidgets并在底部设置选项卡。一切都运行良好。 现在我想跟踪标签页上的内容:
我的main.xml是:
<TabHost
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="fill_parent"
android:layout_weight="1" />
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="0"/>
</LinearLayout>
</TabHost>
我当前的标签如下:
但我想看看我的标签如下:
我尝试过很多东西,但没有得到合适的解决方案。请指导我。