如何更改android中的TabHost,所以它应该与iPhone中的UITabBarController相同?即视图应位于TabHost的顶部,而不是底部。
答案 0 :(得分:3)
这是一个示例布局代码,用于在屏幕底部显示选项卡:
<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">
<LinearLayout android:orientation="vertical"
android:layout_width="fill_parent" android:layout_height="fill_parent">
<FrameLayout android:id="@android:id/tabcontent"
android:layout_width="fill_parent" android:layout_height="wrap_content"
android:layout_weight="1">
</FrameLayout>
<TabWidget android:id="@android:id/tabs"
android:layout_width="fill_parent" android:layout_height="65dp"
android:layout_marginLeft="0dip" android:layout_marginRight="0dip"
android:layout_weight="0"></TabWidget>
</LinearLayout>
</TabHost>