TabHOST 选项卡的功能和用法

TabHOST

选项卡的功能和用法

tabhost可以方便的在窗口放置多个标签页,,每个标签页相当于一个和外部容器一样大小的组件摆放区域,通过这种方式,就可以在一个容器中放置更多组件

    android:layout_width="match_parent"

    android:layout_height="match_parent"

    android:layout_weight="1"

    android:id="@android:id/tabhost">


   

    android:layout_width="match_parent"

    android:layout_height="match_parent"

    android:orientation="vertical">

   

        android:layout_width="match_parent"

        android:layout_height="wrap_content"

        android:id="@android:id/tabs"/>

   

        android:layout_width="match_parent"

        android:layout_height="match_parent"

        android:id="@android:id/tabcontent">

       

       

            android:layout_width="match_parent"

            android:layout_height="match_parent"

            android:id="@+id/tb01"

            android:orientation="vertical">

           

                android:layout_width="match_parent"

                android:layout_height="wrap_content"

                android:text="公共课总分"/>

           

                android:layout_width="match_parent"

                android:layout_height="wrap_content"

                android:text="专业课总分"/>

       

       

       

            android:layout_width="match_parent"

            android:layout_height="match_parent"

            android:id="@+id/tb02"

            android:orientation="vertical">

           

                android:layout_width="match_parent"

                android:layout_height="wrap_content"

                android:text="总分合计"/>

           

                android:layout_width="match_parent"

                android:layout_height="wrap_content"

                android:text="总分合计01"/>

       

       

       

            android:layout_width="match_parent"

            android:layout_height="match_parent"

            android:id="@+id/tb03"

            android:orientation="vertical"

            >

           

                android:layout_width="match_parent"

                android:layout_height="wrap_content"

                android:text="录取学校"/>

           

                android:layout_width="match_parent"

                android:layout_height="wrap_content"

                android:text="录取专业"/>

       

   

public class MainActivity extends TabActivity {

    @Override

    public void onCreate(Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);

        setContentView(R.layout.tabhost);

        //获取改activity里面,tabhost组件

        TabHost th = getTabHost();

        //创建第一个tab页面

        TabHost.TabSpec tab1 = th.newTabSpec("tab1").setIndicator("分数").setContent(R.id.tb01);

        //添加第一个标签页

        th.addTab(tab1);

        TabHost.TabSpec tab2 = th.newTabSpec("tab2")

                //在标签标题上面放置图标

                .setIndicator("总分合计", getResources().getDrawable(R.drawable.mia5))

                .setContent(R.id.tb02);

        //添加第二个标签页

        th.addTab(tab2);

        TabHost.TabSpec tab3 = th.newTabSpec("tab3")

                .setIndicator("录取专业")

                .setContent(R.id.tb03);

        //添加第三个标签页

        th.addTab(tab3);



    }

}


你可能感兴趣的:(TabHOST 选项卡的功能和用法)