AndroidUI组件之TabHost

package com.gc.tabhost;
/**
 * @author Android将军
 *
 *
 *
 * 1、TabHost是一种非常实用的组件,TabHost可以很方便地在窗口上放置
 * 多个标签页,每个标签页相当于获得了一个与外部容器相同大小的组件
 * 摆放区域。通过这种方式,就可以在一个容器里放置更多组件。
 * 2、与TabHost结合使用的还有如下组件:
 * TabWidget:代表选项卡的标签条。
 * TabSpec:代表选项卡的一个Tab页面。
 * 3、TabHost仅仅是一个简单的容器,它提供了如下两个方法来创建、添加
 * 选项卡:
 * newTabSpec(String tag):创建选项卡。
 * addTab(TabHost.TabSpec tabSpec):添加选项卡。
 * 4、使用TabHost的一般步骤如下:
 * (1)在界面布局中定义TabHost组件,并为该组件定义该选项卡的内容
 * (2)Activity应该继承TabActivity
 * (3)调用TabActivity的getTabHost()方法获取TabHost对象
 * (4)通过TabHost对象的方法来创建、添加选项卡。
 * 5、TabHost容器内部需要组合两个组件:TabWidget和FrameLayout
 * ,其中TabWidget定义选项卡的标题条:FrameLayout则用于“层叠”组合多个选项
 * 页面。
 * 6、注意:
 * 在ID的书写时不时开发者自己书写,TabHost、TabWidget和FrameLayout
 * 这三个组件的ID是有要求的:
 * TabHost的ID应该为@android:id/tabhost
 * TabWidget的ID应该为@android:id/tabs
 * FrameLayout的ID应该为@android:id/tabcontent.
 * 这三个ID不是我们自己定义的,而是引用了Android系统已有的ID。
 * 7、最新版本的Android平台已经不再推荐使用TabActivity,而是推荐使用
 * Fragment来代替TabActivity。
 */
import android.os.Bundle;
import android.app.Activity;
import android.app.TabActivity;
import android.view.Menu;
import android.widget.TabHost;
import android.widget.TabHost.TabSpec;

public class MainActivity extends TabActivity {

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
		//获取该Activity里面的TabHost组件
		TabHost tabHost=getTabHost();
		//创建第一个Tab页
		TabSpec tab1=tabHost.newTabSpec("tab1")
				.setIndicator("Android将军1")
				.setContent(R.id.tab01);
		//添加第一个标签页
		tabHost.addTab(tab1);
		TabSpec tab2=tabHost.newTabSpec("tab2")
				.setIndicator("Android将军2",getResources().getDrawable(R.drawable.ic_launcher))
				.setContent(R.id.tab02);
		//添加第二个标签页
		tabHost.addTab(tab2);
		TabSpec tab3=tabHost.newTabSpec("tab3").setIndicator("Android将军3")
				.setContent(R.id.tab03);
		//添加第三个标签页
		tabHost.addTab(tab3);

	}

}

相应的xml布局文件为:

<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@android:id/tabhost"
    android:layout_width="match_parent"
    android:layout_height="match_parent"

  >
  <RelativeLayout
      android:layout_width="fill_parent"
      android:layout_height="fill_parent"
      >

  </RelativeLayout>
  <LinearLayout
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:orientation="vertical"
      >
    <RelativeLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"

        >
         <FrameLayout
          android:id="@android:id/tabcontent"
          android:layout_width="match_parent"
          android:layout_height="match_parent"
          >
          <!-- 定义第一个标签页的内容 -->
          <LinearLayout
              android:id="@+id/tab01"
              android:orientation="vertical"
              android:layout_width="fill_parent"
              android:layout_height="fill_parent"
              >
              <TextView
                  android:layout_width="fill_parent"
                  android:layout_height="wrap_content"
                  android:text="Android将军"
                  />
              <TextView
                  android:layout_width="fill_parent"
                  android:layout_height="wrap_content"
                  android:text="赳赳老秦,共赴国难,秦朝将军"
                  />
          </LinearLayout>
            <!-- 定义第二个标签页的内容 -->
          <LinearLayout
              android:id="@+id/tab02"
              android:orientation="vertical"
              android:layout_width="fill_parent"
              android:layout_height="fill_parent"
              >
              <TextView
                  android:layout_width="fill_parent"
                  android:layout_height="wrap_content"
                  android:text="Android将军2"
                  />
              <TextView
                  android:layout_width="fill_parent"
                  android:layout_height="wrap_content"
                  android:text="赳赳老秦,共赴国难,秦朝将军2"
                  />
          </LinearLayout>
            <!-- 定义第三个标签页的内容 -->
          <LinearLayout
              android:id="@+id/tab03"
              android:orientation="vertical"
              android:layout_width="fill_parent"
              android:layout_height="fill_parent"
              >
              <TextView
                  android:layout_width="fill_parent"
                  android:layout_height="wrap_content"
                  android:text="Android将军3"
                  />
              <TextView
                  android:layout_width="fill_parent"
                  android:layout_height="wrap_content"
                  android:text="赳赳老秦,共赴国难,秦朝将军3"
                  />
          </LinearLayout>
      </FrameLayout>

        <TabWidget
          android:id="@android:id/tabs"
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:layout_alignParentBottom="true"
          />
    </RelativeLayout>

  </LinearLayout>

</TabHost>

程序运行效果图为:

转载请注明出处:http://blog.csdn.net/android_jiangjun/article/details/25346627

AndroidUI组件之TabHost

时间: 2024-11-03 05:24:12

AndroidUI组件之TabHost的相关文章

AndroidUI组件之TextSwitcher

package com.gc.textswitcherdemo; /* * 文本切换器(TextSwitcher): * 1.TextSwitcher继承了ViewSwitcher,因此它具有与ViewSwitcher相同的特征 * 可以在切换View组件时使用动画效果.与ImageSwitcher相似的是,使用TextSwitcher * 也需要设置一个ViewFactory.与ImageSwitcher不同的是,TextSwitcher所需的 * ViewFactory的makeView()

AndroidUI组件之AdapterViewFilpper

package com.gc.adapterviewflipperdemo; /** * 功能:自动播放的图片库 * @author Android将军 */ /* * 1.AdapterViewFilpper继承了AdapterViewAnimator,它也会 * 显示Adapter提供的多个View组件,但它每次只能显示一个View组件 * ,程序可通过showPrevious()和showNext()方法控制该组件显示 * 上一个.下一个组件. * 2.AdapterViewFilpper

AndroidUI组件之ImageSwitcher

今天继续AndroidUI组件的讲解(写博客只是为了巩固与继续学习知识----工欲善其事,必先利其器!) 下面是主Activity的源码,里面附含知识点的讲解,在前面的博客里已经说明,简单的知识点我会以代码注释的形式讲解,好了,不废话了: package com.gc.imageswitcherdemo; /* * 图像切换器(ImageSwitcher)的功能与用法 * * 1.ImageSwitcher继承了ViewSwitcher,因此它具有与ViewSwitcher相同的特征 * :可以

AndroidUI组件之AlertDialog

package com.gc.alertdialogdemo; /** * AlertDialog: * 1.AlertDialog的功能很强大,它可以生成各种内容的对话框,实际上AlertDialog生成的 * 的对话框总可以分为4个区域:(1)图标区(2)标题区(3)内容区(3)按钮区. * 2.创建一个对话框需要经过如下几个步骤: * (1)使用创建AlertDialog.Builder对象. * (2)调用AlertDialog.Builder的setTitle()或setCustomT

AndroidUI组件之ProgressBar

package com.gc.progressbar; /* * 1.ProgressBar组件也是一组重要的组件,ProgressBar本身代表了进度条组件, * 它还派生了两个常用的组件:SeekBar和RatingBar. * 2.进度条的功能与用法: * 进度条通常用于向用户显示某个耗时操作完成的百分比,进度条可以动态地显示进度 * 因此避免长时间地执行某个耗时操作时,让用户感觉程序失去了响应. * Android支持如下几种风格的进度条,通过style属性可以为ProgressBar指

android-UI组件实例大全(六)------ImageView图像视图

图像视图:ImageView 继承view类,用于在屏幕上显示任何Drawable对象,通常用来显示图片: 这里的话我们介绍一些比较常用的属性: Path 1: android:adjustViewBounds:设置ImageView是否调整自己的边界来保持所显示图片的长宽比 !!!下面的这两个属性需要adjustViewBounds为ture,不然是不起作用的哦! android:maxHeight:设置ImageView的最大高度 android:maxWidth:设置ImageView的最

AndroidUI组件之ActionBar

有一段时间没有写博文了,发现自己的博文的完整度不是非常好.就拿AndroidUI组件这一块.一直没有更新完.我会尽快更新.好了.不多说了,今天来看一下ActionBar. 依照以往的作风.知识点都以代码凝视的形式在源码中. package com.gc.actionbardemo; /** * 1.活动条(ActionBar)是Android3.0的重要更新之中的一个. ActionBar位于传统标题栏的位置 * 也就是显示的屏幕的顶部.ActionBar可显示应用的图标和Activity标题-

AndroidUI组件之RoomButton

<!-- 知识点汇总: 1.Button与ImageButton的区别在于,Button生成的按钮上显示文字 而ImageButton上则显示图片.需要指出的是:为ImageButton按 钮指定 android:text属性没用(ImageButton的本质是ImageView),即使指定 了该属性,图片按钮上也不会显示任何文字 2.ImageButton 派生了一个ZoomButton ,ZoomButton可以代表"放大". "缩小"两个按钮.ZoomB

AndroidUI组件之GridView

java 代码如下(简单的知识点我会以注释的形式讲解): package com.gc.gridviewdemo; /** * @author Android将军 */ /** * 知识点讲解: * 1.GridView 用于在界面上按行.列分布的方式来显示多个组件. * GridView和ListView有共同的父类:AbsListView,因此GridView * 和ListView具有很高的相似性,它们都是列表项. * GridView与ListView的唯一区别在于:ListView只显