1,布局

 <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/frgmt_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#FFFFFF" > <TabHost
android:id="@android:id/tabhost"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clipChildren="true" > <RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@android:id/tabs"> <!-- 注意此句,如果没有此句,当tab1,tab2...过高时,会TabWidget会盖住 -->
<!-- tab1,用include可以引用别处的layout -->
<include
android:id="@+id/tab_weixin"
android:layout_width="match_parent"
android:layout_height="match_parent"
layout="@layout/tab_weixin_layout" />
<!-- tab2,用include可以引用别处的layout -->
<include
android:id="@+id/tab_contacts"
android:layout_width="wrap_content"
android:layout_height="match_parent"
layout="@layout/tab_contacts_layout" />
<!-- tab3,用include可以引用别处的layout -->
<include
android:id="@+id/tab_discovery"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
layout="@layout/tab_discovery_layout" />
<!-- tab4,用include可以引用别处的layout -->
<include
android:id="@+id/tab_me"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
layout="@layout/tab_me_layout" />
</FrameLayout>
<TabWidget
android:id="@android:id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#E0E0E0"
android:layout_alignParentBottom="true"
android:showDividers="none" >
</TabWidget>
</RelativeLayout>
</TabHost>
</FrameLayout>

2,在代码中初始化tab栏

     void initTabHostTabs(LayoutInflater inflater){

         tabHost.setup();

         ScaleDrawable scale ;
TabSpec tab = tabHost.newTabSpec("weixin");
View tabView1 = inflater.inflate(R.layout.tab_indicator, null, false);
TextView tabTitle = (TextView) tabView1.findViewById(R.id.tab_title);
tabTitle.setText(R.string.tab_weixin);
ImageView tabIcon = (ImageView) tabView1.findViewById(R.id.tab_icon);
tabIcon.setImageResource(R.drawable.tab_weixin_scale);
scale = (ScaleDrawable) tabIcon.getDrawable();
scale.setLevel(); tab.setIndicator(tabView1);
tab.setContent(R.id.tab_weixin);
tabHost.addTab(tab); tab = tabHost.newTabSpec("contacts");
View tabView2 = inflater.inflate(R.layout.tab_indicator, null, false);
tabTitle = (TextView) tabView2.findViewById(R.id.tab_title);
tabTitle.setText(R.string.tab_contacts);
tabIcon = (ImageView) tabView2.findViewById(R.id.tab_icon);
tabIcon.setImageResource(R.drawable.tab_contacts_scale);
scale = (ScaleDrawable) tabIcon.getDrawable();
scale.setLevel(); tab.setIndicator(tabView2);
tab.setContent(R.id.tab_contacts);
tabHost.addTab(tab); tab = tabHost.newTabSpec("discovery");
View tabView3 = inflater.inflate(R.layout.tab_indicator, null, false);
tabTitle = (TextView) tabView3.findViewById(R.id.tab_title);
tabTitle.setText(R.string.tab_discovery);
tabIcon = (ImageView) tabView3.findViewById(R.id.tab_icon);
tabIcon.setImageResource(R.drawable.tab_discovery_scale);
scale = (ScaleDrawable) tabIcon.getDrawable();
scale.setLevel(); tab.setIndicator(tabView3);
tab.setContent(R.id.tab_discovery);
tabHost.addTab(tab); tab = tabHost.newTabSpec("me");
View tabView4 = inflater.inflate(R.layout.tab_indicator, null, false);
tabTitle = (TextView) tabView4.findViewById(R.id.tab_title);
tabTitle.setText(R.string.tab_me);
tabIcon = (ImageView) tabView4.findViewById(R.id.tab_icon);
tabIcon.setImageResource(R.drawable.tab_me_scale);
scale = (ScaleDrawable) tabIcon.getDrawable();
scale.setLevel(); tab.setIndicator(tabView4);
tab.setContent(R.id.tab_me);
tabHost.addTab(tab); /* 测试可以向右划动tab
for (int i = 0; i < 5; i++) {
tab = tabHost.newTabSpec("more" + i);
tab.setIndicator("more" + i);
tab.setContent(R.id.tab_me);
tabHost.addTab(tab);
}
*/
}

Android 常用UI控件之TabHost(2)简单示例的更多相关文章

  1. Android 常用UI控件之TabHost(5)Tab栏在底部且在最上层也不盖tab页

    tab栏在底部 <TabHost android:id="@android:id/tabhost" android:layout_width="match_pare ...

  2. Android 常用UI控件之TabHost(1)TabHost的两种布局方式

    TabHost是Android中的tab组件. TabHost布局文件的基本结构 TabHost下有个layout,这个layout中有TabWidget与FrameLayout.TabWidget是 ...

  3. Android 常用UI控件之TabHost(4)实现当Tab栏有多个tab时,可以左右滑动

    <!-- <HorizontalScrollView android:id="@+id/horizontalScrollView1" android:layout_wi ...

  4. Android 常用UI控件之TabHost(3)在4.0不显示图标的解决方案

    1,自定义 TabWidget 上每个tab的view 2,用多个图片

  5. Android 常用UI控件之Tab控件的实现方案

    实现Tab的方式有多种 1,ActionBar有两种模式可以实现,但是已经过期 tab模式tab在顶部,分裂模式tab在底部(同时所有action item都在底部). 2,PagerTitleStr ...

  6. 【风马一族_Android】第4章Android常用基本控件

    第4章Android常用基本控件 控件是Android用户界面中的一个个组成元素,在介绍它们之前,读者必须了解所有控件的父类View(视图),它好比一个盛放控件的容器. 4.1View类概述 对于一个 ...

  7. [置顶] Android常用适配器控件

    Android常用适配器控件 列表控件用于显示数据集合,Android不是使用一种类型的控件管理显示和数据,而是将这两项功能分布用列表控件和适配器来实现.列表控件扩展了android.widget.A ...

  8. [Android] Android 让UI控件固定于底部的几种方法

    Android 让UI控件固定于底部的几种方法1.采用linearlayout布局:android:layout_height="0dp" <!-- 这里不能设置fill_p ...

  9. widget 常用UI控件介绍

        一.单选框 单选框实例程序: <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android&q ...

随机推荐

  1. Jquery中Ajax异步请求中的async参数的作用

    之前不知道这个参数的作用,上网找了前辈的博客,在此收录到自己的博客,希望能帮到更多的朋友: test.html <a href="javascript:void(0)" on ...

  2. 嵌入式系统关机/Embeded System PowerOff HowTo?

    REFER: 嵌入式Linux实现关机命令 REFER: Embedded File System and power-off REFER: kernel/reboot.c REFER: PowerO ...

  3. 高并发编程陷阱之check and set

    今天公司CTO跟隔壁部门开技术会,旁听了一下.所讲的内容感觉好高大上啊!简单记录一下 场景是这样的: if(check(id)===true) { }else{ set(id); } 什么意思呢? 就 ...

  4. 我爱工程化 之 gulp 使用(一)

    一.简介 gulp是前端自动化工具,压缩.合并.预编译检查等等,它与grunt频繁IO操作来消耗内存相比,它是使用的流的方式,我们可以简称为管道流(一端入,一端出,3通水,一个大桶,第一通在管道里面流 ...

  5. php QQ登录

    基本原理: 就是获取唯一的openid,此值只要与自己数据库表中的值对应,就说明是此用户, 没有,则说明是新用户,其实就是找对应关系,因为openid与QQ号是唯一对应关系 放置按钮: 如在首页 in ...

  6. 利用Keepalived+mysql构建高可用MySQL双主自动切转

    转载:http://www.it300.com/index.php/article-15266.html 关于MySQL-HA,目前有多种解决方案,比如heartbeat.drbd.mmm.共享存储, ...

  7. trigger

    trigger() 方法触发被选元素的指定事件 <html><head><script type="text/javascript" src=&quo ...

  8. 解决ie8下h5元素兼容性的问题

    HTML5的语义化标签以及属性,可以让开发者非常方便地实现清晰的web页面布局,加上CSS3的效果渲染,快速建立丰富灵活的web页面显得非常简单. HTML5的新标签元素有: <header&g ...

  9. poj 2187 Beauty Contest

    Beauty Contest 题意:给你一个数据范围在2~5e4范围内的横纵坐标在-1e4~1e4的点,问你任意两点之间的距离的最大值的平方等于多少? 一道卡壳凸包的模板题,也是第一次写计算几何的题, ...

  10. OFBiz进阶之环境搭建(eclipse)

    一. 环境准备 1. jdk1.6 下载地址:http://www.oracle.com/technetwork/java/javasebusiness/downloads/java-archive- ...