本例介绍TabActivity ,在Android新版本不建议使用TabActivity,而是使用Fragment。 TabActivity 提供了分页控件(Tab Control),关键的一个类为TabHost,TabHost 为TabActivity的View,可以通过getTabHost()取得TabActivity 对应的TabHost.

TabHost 可以通过TabHost.TabSpec 来为Tab 窗口添加一个页面,TabSpec 用来描述一个页面(Tab) ,每个Tab 可以有个tag 用来区分Tab窗口的某个页面,indicator (页标题,可以使用文字,图标等来显示) 和Content(页面内容)。

其中Content 使用View资源Id或是TabHost.TabContentFactory构造或是某个Intent实例(该Intent可以启动某个Activity)。这也是为什么TabActivity 为一ActivityGroup 的原因。

本例对应的代码为Tab1.java 采用View资源ID的方法来设置Tab的Content:

TabHost tabHost = getTabHost();LayoutInflater.from(this).inflate(R.layout.tabs1, tabHost.getTabContentView(), true);tabHost.addTab(tabHost.newTabSpec("tab1") .setIndicator("tab1") .setContent(R.id.view1));tabHost.addTab(tabHost.newTabSpec("tab3") .setIndicator("tab2") .setContent(R.id.view2));tabHost.addTab(tabHost.newTabSpec("tab3") .setIndicator("tab3") .setContent(R.id.view3));

要注意的是使用setContent中指定的View,之前需要将它们展开到tabHost.getTabContentView()中。

R.layout.tabs1.xml 定义如下:

<FrameLayout xmlns:android=”http://schemas.android.com/apk/res/android”android:layout_width=”match_parent”android:layout_height=”match_parent”><TextView android:id=”@+id/view1″android:background=”@drawable/blue”android:layout_width=”match_parent”android:layout_height=”match_parent”android:text=”@string/tabs_1_tab_1″/><TextView android:id=”@+id/view2″android:background=”@drawable/red”android:layout_width=”match_parent”android:layout_height=”match_parent”android:text=”@string/tabs_1_tab_2″/><TextView android:id=”@+id/view3″android:background=”@drawable/green”android:layout_width=”match_parent”android:layout_height=”match_parent”android:text=”@string/tabs_1_tab_3″/></FrameLayout>

Tabs->Content By Id_第1张图片" width="332" height="492" style="padding:0px; border:none; margin:5px auto; font:inherit; vertical-align:baseline; max-width:100%; height:auto; display:block;border:1px solid black;">


更多相关文章

  1. Android中使用Streams的两种方法
  2. Android(安卓)Java执行Shell命令
  3. 史上最详细的Android(安卓)Studio系列教程三--快捷键
  4. android 开发 时间选择器TimePicker的使用
  5. Android(安卓)error:No CPU/ABI system image available for thi
  6. 约束布局ConstraintLayout的使用你知道吗
  7. 箭头函数的基础使用
  8. NPM 和webpack 的基础使用
  9. Python list sort方法的具体使用

随机推荐

  1. 面向UDP的Android——PC双向通信(三):在Andr
  2. [转] Android电源管理
  3. android:configChanges
  4. Android是什么 之三-------手机之硬件形
  5. android kernel 初始化 1
  6. Android 6.0棉花糖新特性,
  7. android TextView 走马灯效果
  8. Android api,Android SDK
  9. android后台进程隐藏手段
  10. ch026 Android Socket