我目前正在尝试根据客户的规格创建应用程序,其中包括双选项卡集。
意味着用户需要单击底部的选项卡,例如在第一个选项卡中,他还会在顶部看到一组可以单击的选项卡(但是当点击这些选项卡时,只有那些选项卡在顶部将更改,而底部的选项卡将保持不变)。
我怎么能用Android执行此操作? 到目前为止,我只能实现正常的标签创建根项“TabHost”,如下所示:
<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<RelativeLayout
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_alignParentTop="true" >
</FrameLayout>
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true" />
</RelativeLayout>
</TabHost>
提前多多感谢!
答案 0 :(得分:1)
我发现了这一点,感谢ActionBar(以及用于预蜂窝设备的SherlockActionBar):
还有这个: