Tabhost默认的布局文件
- <TabHostxmlns: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:gravity="bottom"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent">
- <TabWidget
- android:id="@android:id/tabs"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"/>
- <FrameLayout
- android:id="@android:id/tabcontent"
- android:layout_width="fill_parent"
- android:layout_height="200dip">
- </FrameLayout>
- </LinearLayout>
- </TabHost>
移到屏幕底部
- TabWidgettabWidget=tabHost.getTabWidget();
- LinearLayoutlLayout=(LinearLayout)tabHost.getChildAt(0);
- lLayout.removeViewAt(0);
- lLayout.addView(tabWidget);
本文详细介绍了如何将TabWidget整合到TabHost布局中,并调整其位置至屏幕底部,适用于Android应用开发。

被折叠的 条评论
为什么被折叠?



