效果是这样的:
我研究了一些方法。
有人用radiogroup
,有人用tabhost
。
最简单的方法是什么?
还有其他方法吗?
这并不是谷歌在 标签设计指南中推荐的内容,如果你仍然想使用它,我认为 TabHost 是完美的方式。有关更多信息,请参阅如何在屏幕底部对齐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_height="fill_parent"
android:layout_width="fill_parent">
<TabWidget
android:id="@android:id/tabs"
android:layout_alignParentBottom="true"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5dp" />
</RelativeLayout>
</TabHost>