Java学习者论坛

 找回密码
 立即注册

QQ登录

只需一步,快速开始

手机号码,快捷登录

恭喜Java学习者论坛(https://www.javaxxz.com)已经为数万Java学习者服务超过8年了!积累会员资料超过10000G+
成为本站VIP会员,下载本站10000G+会员资源,购买链接:点击进入购买VIP会员
JAVA高级面试进阶视频教程Java架构师系统进阶VIP课程

分布式高可用全栈开发微服务教程

Go语言视频零基础入门到精通

Java架构师3期(课件+源码)

Java开发全终端实战租房项目视频教程

SpringBoot2.X入门到高级使用教程

大数据培训第六期全套视频教程

深度学习(CNN RNN GAN)算法原理

Java亿级流量电商系统视频教程

互联网架构师视频教程

年薪50万Spark2.0从入门到精通

年薪50万!人工智能学习路线教程

年薪50万!大数据从入门到精通学习路线年薪50万!机器学习入门到精通视频教程
仿小米商城类app和小程序视频教程深度学习数据分析基础到实战最新黑马javaEE2.1就业课程从 0到JVM实战高手教程 MySQL入门到精通教程
查看: 681|回复: 0

开发交流:Android Tabhost部件详解

[复制链接]

该用户从未签到

发表于 2011-10-24 09:17:45 | 显示全部楼层 |阅读模式
本文结合源代码和实例来说明TabHost的用法。使用TabHost 可以在一个屏幕间进行不同版面的切换,例如Android自带的拨号应用,查看tabhost的源代码,主要实例变量有:private TabWidget mTabWidget;private FrameLayout mTabContent;private List mTabSpecs;也就是说我们的tabhost必须有这三个东西,所以我们的.xml文件就会有规定:继续查看源代码:
java代码: if (mTabWidget == null) {

throw new RuntimeException(

“Your TabHost must have a TabWidget whose id attribute is ‘android.R.id.tabs’”);

}

mTabContent = (FrameLayout) findViewById(com.android.internal.R.id.tabcontent);



if (mTabContent == null) {

throw new RuntimeException(

“Your TabHost must have a FrameLayout whose id attribute is ‘android.R.id.tabcontent’”);

}
复制代码   复制代码也就是说我们的.xml文件需要TabWidget和FrameLayout标签。接下来构建我们自己的tab实例:
       有两种方式可以实现:

        一种是继承TabActivity 类,可以使用android的自己内部定义好的.xml资源文件作容器文件。也就是在我们的代码中使用getTabHost(); , 而相应的后台源码是这样的:this.setContentView(com.android.internal.R.layout.tab_content);在系统的资源文件中可以看见这个layout,有了容器,然后我们就需要我们为每个tab分配内容,当然要可以是如何类型的标签:

       例如我们构建一下.xml文件

       首先tab1.xml 是一个LinearLayout布局

Java代码:

android:id="@+id/LinearLayout01"

android:layout_width="wrap_content"

android:layout_height="wrap_content">

android:id="@+id/TextView01"

android:layout_width="wrap_content"

android:layout_height="wrap_content">
复制代码   然后是tab2.xml是一个FrameLayout布局

Java代码:

android:id="@+id/FrameLayout02"

android:layout_width="wrap_content"

android:layout_height="wrap_content">

android:layout_width="wrap_content"

android:layout_height="wrap_content">

android:id="@+id/TextView01"

android:layout_width="wrap_content"

android:layout_height="wrap_content">
复制代码
        接着要注册这两个FrameLayout为tabhost的Content,也就是接下来的代码:

Java代码:

LayoutInflater inflater_tab1 = LayoutInflater.from(this);

inflater_tab1.inflate(R.layout.tab1, mTabHost.getTabContentView());

inflater_tab1.inflate(R.layout.tab2, mTabHost.getTabContentView());
复制代码

      那么我们就来看看完整的代码吧:

Java代码:

TabHost mTabHost = getTabHost();

LayoutInflater inflater_tab1 = LayoutInflater.from(this);

0inflater_tab1.inflate(R.layout.tab1, mTabHost.getTabContentView());

inflater_tab1.inflate(R.layout.tab2, mTabHost.getTabContentView());

mTabHost.addTab(mTabHost.newTabSpec(“tab_test1″).setIndicator(“TAB 11″).setContent(R.id.LinearLayout01));

mTabHost.addTab(mTabHost.newTabSpec(“tab_test1″).setIndicator(“TAB 11″).setContent(R.id.FrameLayout02)); .
复制代码
回复

使用道具 举报

该用户从未签到

发表于 2011-10-24 09:17:47 | 显示全部楼层

Re:开发交

自己构建tabhost必须有这三个东西:TabWidget,FrameLayout,TabSpec。
明白了,
回复 支持 反对

使用道具 举报

该用户从未签到

发表于 2011-10-24 09:17:50 | 显示全部楼层

Re:开发交

哦 学习中。。。
回复 支持 反对

使用道具 举报

该用户从未签到

 楼主| 发表于 2011-10-24 09:17:52 | 显示全部楼层

Re:开发交

哦 学习中。。。
回复 支持 反对

使用道具 举报

该用户从未签到

发表于 2011-10-24 09:17:55 | 显示全部楼层

Re:开发交

哦 学习中。。。
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|手机版|Java学习者论坛 ( 声明:本站资料整理自互联网,用于Java学习者交流学习使用,对资料版权不负任何法律责任,若有侵权请及时联系客服屏蔽删除 )

GMT+8, 2025-1-10 18:56 , Processed in 0.353944 second(s), 33 queries .

Powered by Discuz! X3.4

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表