android中文api (59) —— TabHost.TabSpec

a 夏天 提交于 2020-02-23 01:15:15

 

前言

  本章内容是 android.widget.TabHost.TabSpec,版本为Android 2.3 r1,翻译来自"madgoat",欢迎大家访问他的博客:http://madgoat.cn/,再次感谢"madgoat" !期待你加入Android中文翻译组,联系我over140@gmail.com。

 

声明

  欢迎转载,但请保留文章原始出处:)

    博客园:http://www.cnblogs.com/

    Android中文翻译组:http://code.taobao.org/project/view/404/

 

正文

  一、结构

public class TabHost.TabSpec extends Object

        

java.lang.Object

android.widget.TabHost.TabSpec

 

  二、概述

  每个选项卡都有一个选项卡指示符,内容和tag标签用于跟踪。这种生成器可以帮助从这些选项中做出选择。针对选项卡的指示符,你可以选择:

      1)设置一个标题

      2)设置一个标题和图标

  针对选项卡的内容,你可以选择:

  1)视图的ID

  2)TabHost.TabContentFactory创建的视图内容

  3)加载Activity的Intent对象

 

  三、公共方法

  public String getTag ()

  (译者注:获取tag标签字符串)

 

  public TabHost.TabSpec setContent (int viewId)

  为选项卡的内容指定视图的ID

  (译注:即设定选项卡内容的视图)

 

  public TabHost.TabSpec setContent (Intent intent)

  指定一个加载activityIntent对象作为选项卡内容

 

  public TabHost.TabSpec setContent (TabHost.TabContentFactory contentFactory)

  指定一个TabHost.TabContentFactory用于创建选项卡的内容

 

  public TabHost.TabSpec setIndicator (CharSequence label)

  指定一个标签作为选项卡指示符

 

  public TabHost.TabSpec setIndicator (View view)

  指定一个视图作为选项卡指示符

 

  public TabHost.TabSpec setIndicator (CharSequence label, Drawable icon)

  为选项卡指示符指定一个标签和图标

 

  四、补充

    文章链接

      TabHost中的TabSpec的标题能不能缩小啊?

      androidTabActivity

 

  五、相关章节

    android 2.3 r1 中文 api (58) —— TabHost

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!