Chinaunix首页 | 论坛 | 博客
  • 博客访问: 2630884
  • 博文数量: 315
  • 博客积分: 3901
  • 博客等级: 少校
  • 技术积分: 3640
  • 用 户 组: 普通用户
  • 注册时间: 2011-05-08 15:32
个人简介

知乎:https://www.zhihu.com/people/monkey.d.luffy Android高级开发交流群2: 752871516

文章分类

全部博文(315)

文章存档

2019年(2)

2018年(1)

2016年(7)

2015年(32)

2014年(39)

2013年(109)

2012年(81)

2011年(44)

分类: Android平台

2014-11-27 10:09:56


点击(此处)折叠或打开

  1. package cn.csdn.activity;

  2. import android.app.TabActivity;
  3. import android.os.Bundle;
  4. import android.view.LayoutInflater;
  5. import android.widget.TabHost;

  6. public class TabHostActivity extends TabActivity {

  7.     @Override
  8.     protected void onCreate(Bundle savedInstanceState) {

  9.         super.onCreate(savedInstanceState);
  10.         TabHost tabhost = this.getTabHost();

  11.         /**
  12.          * LayoutInflater这个类的作用类似于findViewById(),
  13.          * 不同点:
  14.          * LayoutInflater是用来找layout下xml布局文件的,而且它会实例化
  15.          * findViewById()是找具体xml布局文件下的具体widget控件,比如:Button按钮
  16.          *
  17.          *
  18.          *
  19.          * inflate就相当于将一个xml中定义的布局找出来.   
  20.          * 因为如果在一个Activity文件里直接用findViewById()这个方法的话,
  21.          * 那么它所对应的是setConentView()中调用的那个layout里的组件.   
  22.          * 因此如果在同样的Activity里用到别的layout的话,
  23.          * 而且你还要设置这个layout里的组件(比如:ImageView,TextView)上的内容,
  24.          * 那么你就必须用inflate()先将这个layout找出来, 然后再用这个layout对象去找到它上面的组件
  25.          * 然后进行一系列的操作
  26.          *
  27.          * inflate()方法中参数:
  28.          * 1.想要用的布局文件的id
  29.          * 2.持有选项卡的内容,获取FrameLayout
  30.          * 3.true:将此处解析的xml文件做为根视图View
  31.          */
  32.         LayoutInflater.from(this).inflate(R.layout.tabhost_layout,
  33.                 tabhost.getTabContentView(), true);

  34.         
  35.         /**在这里添加的时候:
  36.          * 1.必须指定 tab 的内容,必须为 id, 即:setContent(R.id.text)
  37.          * 2.必须设置tab 上的文字或图片 , 即:setIndicator("已接电话")
  38.          * 3.返回一个 TabHost.TabSpec 对象,其参数用于标识一个 tab 的 tag,即:newTabSpec("tab1")
  39.         */
  40.         tabhost.addTab(tabhost.newTabSpec("tab1").setIndicator("已接电话")
  41.                 .setContent(R.id.text));
  42.         
  43.         tabhost.addTab(tabhost.newTabSpec("tab2").setIndicator("呼出电话",
  44.                 getResources().getDrawable(R.drawable.ic_launcher))
  45.                 .setContent(R.id.text));
  46.         
  47.         tabhost.addTab(tabhost.newTabSpec("tab3").setIndicator("未接电话")
  48.                 .setContent(R.id.text));
  49.     }
  50. }
http://blog.csdn.net/like7xiaoben/article/details/7210773
阅读(1946) | 评论(0) | 转发(0) |
0

上一篇:Android自定义Title

下一篇:Android适配

给主人留下些什么吧!~~