Android中TabHost的应用

布局文件:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <TabHost
        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" >

                <include
                    android:id="@+id/tab_discount"
                    layout="@layout/activity_discount" >
                </include>

                <include
                    android:id="@+id/tab_search"
                    layout="@layout/activity_search" >
                </include>

                <include
                    android:id="@+id/tab_home"
                    layout="@layout/activity_home" >
                </include>
                <include
                    android:id="@+id/tab_setting"
                    layout="@layout/activity_setting" >
                </include>


            </FrameLayout>

            <TabWidget
                android:id="@android:id/tabs"
                android:layout_width="fill_parent"
                android:layout_height="45dp"
                android:background="@drawable/base_actionbar_bg" >
            </TabWidget>
        </LinearLayout>
    </TabHost>

</LinearLayout>

代码

tabhost = getTabHost();
		tabhost.addTab(tabhost
				.newTabSpec("discount")
				.setIndicator(
						LayoutInflater.from(this).inflate(R.layout.tabitem,
								null)).setContent(R.id.tab_discount));
		tabhost.addTab(tabhost
				.newTabSpec("search")
				.setIndicator(
						LayoutInflater.from(this).inflate(R.layout.tabitem,
								null)).setContent(R.id.tab_search));
		tabhost.addTab(tabhost
				.newTabSpec("home")
				.setIndicator(
						LayoutInflater.from(this).inflate(R.layout.tabitem,
								null)).setContent(R.id.tab_home));
		tabhost.addTab(tabhost
				.newTabSpec("setting")
				.setIndicator(
						LayoutInflater.from(this).inflate(R.layout.tabitem,
								null)).setContent(R.id.tab_setting));

应注意一下内容:
  1. TabWidget很TabHost的id必须为@android:id/tabs和@android:id/tabhost
  2. LinearLayout中的Frament的weight必须上设置为1 height设置为full_parent
  3. addTab的参数为TabSpec的一个对象 tabSpec是Tabhost的一个内部类
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值