效果是这样的:
我调查了一些方法。
有人使用radiogroup
,有人使用tabhost
。
最简单的方法是什么?
还有其他办法吗?
答案 0 :(得分:2)
谷歌在{{}}}推荐的并不是真的,如果你还想使用它,我认为TabHost是完美的方式。更多请参阅Design Guidelines for tabs
<?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>
答案 1 :(得分:2)