2011.09.14(2)——— android tabhost位于底部
參考: http://blog.csdn.net/tt_iceberg/article/details/6430701
http://blog.csdn.net/roadog2006/article/details/5475549
從網上找了一圈 大致有兩種方法
方法一:
1、tabcontent和tabs交換位置
2、tabcontent的android:layout_weight="1"
方法二:
1、tabcontent和tabs交換位置
2、將tabcontent放到一個relativeLayout中,然后加上這句android:layout_alignParentBottom="true"
參考: http://blog.csdn.net/tt_iceberg/article/details/6430701
http://blog.csdn.net/roadog2006/article/details/5475549
從網上找了一圈 大致有兩種方法
方法一:
<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="match_parent" android:layout_weight="1" > </FrameLayout> <TabWidget android:id="@android:id/tabs" android:layout_width="fill_parent" android:layout_height="wrap_content" /> </LinearLayout> </TabHost>
1、tabcontent和tabs交換位置
2、tabcontent的android:layout_weight="1"
方法二:
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"> <TabHost android:id="@+id/tabhost" android:layout_width="fill_parent" android:layout_height="fill_parent"> <FrameLayout android:id="@android:id/tabcontent" android:layout_width="fill_parent" android:layout_height="fill_parent" android:paddingBottom="62px"> </FrameLayout> <RelativeLayout android:layout_width="fill_parent" android:layout_height="fill_parent"> <TabWidget android:id="@android:id/tabs" android:layout_alignParentBottom="true" android:layout_width="fill_parent" android:layout_height="60px" /> </RelativeLayout> </TabHost> </LinearLayout>
1、tabcontent和tabs交換位置
2、將tabcontent放到一個relativeLayout中,然后加上這句android:layout_alignParentBottom="true"

更多文章、技術交流、商務合作、聯系博主
微信掃碼或搜索:z360901061

微信掃一掃加我為好友
QQ號聯系: 360901061
您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。
【本文對您有幫助就好】元
