我需要在 android 设备中开发这个布局,我在设计中使用了一个 tabview 和三个选项卡。TabWidget 需要位于屏幕底部,而且我需要一种方法来为 tabwidget 开发这种布局。
问问题
144 次
1 回答
0
只需尝试以这种方式获取TabWidget
屏幕底部的 :
<?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"> <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="wrap_content" android:gravity="center|center" android:tabStripEnabled="false"/> </LinearLayout>
于 2013-01-09T10:03:02.133 回答