Android入门之TabHost与TabWidget实例解析

 更新时间:2014年08月08日 11:33:16   投稿:shichen2014  
这篇文章主要介绍了Android入门之TabHost与TabWidget,对于Android初学者有一定的学习借鉴价值,需要的朋友可以参考下

本文实例介绍的是Android的Tab控件,Tab控件可以达到分页的效果,让一个屏幕的内容尽量丰富,当然也会增加开发的复杂程度,在有必要的时候再使用。Android的Tab控件使用起来有点奇怪,必须包含和按照以下的顺序:

TabHost控件->TabWidget(必须命名为tabs)->FrameLayout(必须命名为tabcontent)。

先来贴出本例运行的截图:

main.xml的源码如下:

<?xml version="1.0" encoding="utf-8"?>
<TabHost android:layout_width="fill_parent"
  android:layout_height="fill_parent" xmlns:android="http://schemas.android.com/apk/res/android" android:id="@android:id/TabHost1">
  <TabWidget android:id="@android:id/tabs"
    android:layout_height="wrap_content" android:layout_width="fill_parent">
</TabWidget>
  <FrameLayout android:id="@android:id/tabcontent"
    android:paddingTop="65px" android:layout_width="fill_parent" android:layout_height="fill_parent">
    <LinearLayout android:layout_height="wrap_content" android:id="@+id/Tab1" android:orientation="vertical" android:layout_width="fill_parent">
      <EditText android:layout_height="wrap_content" android:id="@+id/edtTab1" android:layout_width="fill_parent"></EditText>
      <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/btnTab1" android:text="Tab1"></Button>
    </LinearLayout>
    <LinearLayout android:layout_height="wrap_content" android:id="@+id/Tab2" android:layout_width="fill_parent" android:orientation="horizontal">
      <EditText android:layout_height="wrap_content" android:id="@+id/edtTab2" android:layout_width="wrap_content" android:layout_weight="300"></EditText>
      <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/btnTab2" android:text="Tab2"></Button></LinearLayout>
  </FrameLayout>
</TabHost>

java程序源码如下:

package com.testTab;
import android.app.TabActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TabHost;
import android.widget.TabHost.TabSpec;
public class testTab extends TabActivity {//基于TabActivity构建
 
 Button btnTab1,btnTab2;
 EditText edtTab1,edtTab2;
  /** Called when the activity is first created. */
  @Override
  public void onCreate(Bundle savedInstanceState) {
   super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    
    TabHost tabs = getTabHost();
    //设置Tab1
    TabSpec tab1 = tabs.newTabSpec("tab1");
    tab1.setIndicator("tab1");   // 设置tab1的名称
    tab1.setContent(R.id.Tab1);  // 关联控件
    tabs.addTab(tab1);        // 添加tab1
    
    btnTab1=(Button)this.findViewById(R.id.btnTab1);
    edtTab1=(EditText)this.findViewById(R.id.edtTab1);
    btnTab1.setOnClickListener(new ClickEvent());
    
    //设置Tab2
    TabSpec tab2 = tabs.newTabSpec("tab2");
    tab2.setIndicator("tab2");   
    tab2.setContent(R.id.Tab2);  
    tabs.addTab(tab2);        
    
    btnTab2=(Button)this.findViewById(R.id.btnTab2);
    edtTab2=(EditText)this.findViewById(R.id.edtTab2);
    btnTab2.setOnClickListener(new ClickEvent());
    
    tabs.setCurrentTab(0);
  }
  
  class ClickEvent implements View.OnClickListener {
 @Override
 public void onClick(View v) {
  if(v==btnTab1)
  {
  edtTab1.setText("tab1");
  }
  else if(v==btnTab2)
  {
  edtTab2.setText("tab2");
  }
 }
  
  }
}

相关文章

  • Android判断用户2G/3G/4G移动数据网络

    Android判断用户2G/3G/4G移动数据网络

    这篇文章主要介绍了Android判断用户2G/3G/4G移动数据网络的方法,感兴趣的小伙伴们可以参考一下
    2015-12-12
  • Android中GIF动图的播放控制和监听详解

    Android中GIF动图的播放控制和监听详解

    android下播放gif图片功能似乎并不常用,很多时候还是以展示静态图片为主,可能是由于gif图体积比较大吧。不过像表情动画什么的,可能还是需要gif图的。本文主要给大家介绍了关于Android中GIF动图的播放控制和监听的相关资料,需要的朋友可以参考下。
    2017-05-05
  • Android布局技巧之创建高效布局

    Android布局技巧之创建高效布局

    这篇文章主要为大家详细介绍了Android布局技巧之创建高效布局,具有一定的实用性,感兴趣的小伙伴们可以参考一下
    2016-06-06
  • Android最简单的状态切换布局实现教程

    Android最简单的状态切换布局实现教程

    这篇文章主要给大家介绍了关于Android中最简单的状态切换布局的相关资料,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2018-10-10
  • Android RxJava创建操作符Timer的方法

    Android RxJava创建操作符Timer的方法

    这篇文章主要为大家详细介绍了Android RxJava创建操作符Timer的方法,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2017-12-12
  • android轮播图组件的制作方法

    android轮播图组件的制作方法

    这篇文章主要为大家详细介绍了android轮播图组件的制作方法,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2021-08-08
  • Android CoordinatorLayout高级用法之自定义Behavior

    Android CoordinatorLayout高级用法之自定义Behavior

    这篇文章主要介绍了Android CoordinatorLayout高级用法之自定义Behavior,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2018-02-02
  • 使用Kotlin开发Android应用教程

    使用Kotlin开发Android应用教程

    这篇文章主要为大家详细介绍了使用Kotlin开发Android应用的教程,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2017-05-05
  • android实现主动连接和被动连接的蓝牙聊天功能

    android实现主动连接和被动连接的蓝牙聊天功能

    这篇文章主要为大家详细介绍了android实现主动连接和被动连接的蓝牙聊天功能,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2018-06-06
  • Android 有道词典的简单实现方法介绍

    Android 有道词典的简单实现方法介绍

    本篇文章小编为大家介绍,Android 有道词典的简单实现方法介绍。需要的朋友参考下
    2013-04-04

最新评论