实施Android自定义标签栏

时间:2013-01-09 09:59:33

标签: android

我需要在android设备中开发这个布局,即使用tabview和设计中的三个选项卡。 TabWidget需要在屏幕的底部,我还需要一种方法来为tabwidget开发这种布局。

enter image description here

1 个答案:

答案 0 :(得分: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>