Android Tab 控件详解及实例

 更新时间:2017年03月25日 14:39:29   作者:feng1456  
这篇文章主要介绍了Android Tab 控件详解及实例的相关资料,需要的朋友可以参考下

Android Tab 控件详解及实例

在桌面应用中Tab控件使用得非常普遍,那么我们经常在Android中也见到以Tab进行布局的客户端。那么Android中的Tab是如何使用的呢?

1.Activity

package com.wicresoft.activity; 
 
import com.wicresoft.myandroid.R; 
 
import android.app.TabActivity; 
import android.os.Bundle; 
import android.util.Log; 
import android.widget.TabHost; 
import android.widget.TabHost.OnTabChangeListener; 
 
@SuppressWarnings("deprecation") 
public class mainActivity extends TabActivity { 
  private TabHost tabhost; 
  @Override 
  protected void onCreate(Bundle savedInstanceState){ 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.main_activity); 
    //从TabActivity上面获取放置Tab的TabHost 
    tabhost = getTabHost(); 
    tabhost.addTab(tabhost 
         //创建新标签one 
        .newTabSpec("one") 
        //设置标签标题 
        .setIndicator("红色") 
        //设置该标签的布局内容 
        .setContent(R.id.widget_layout_red)); 
    tabhost.addTab(tabhost 
        .newTabSpec("two") 
        .setIndicator("黄色") 
        .setContent(R.id.widget_layout_yellow)); 
    tabhost.addTab(tabhost 
        .newTabSpec("three") 
        .setIndicator("蓝色") 
        .setContent(R.id.widget_layout_blue)); 
    tabhost.setOnTabChangedListener(listener); 
  } 
   
  private OnTabChangeListener listener = new OnTabChangeListener(){ 
    @Override 
    public void onTabChanged(String arg0) { 
      // TODO Auto-generated method stub 
      Log.i("TabChange", arg0); 
    } 
  }; 
} 

2.布局文件

<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:id="@android:id/tabhost">
  
<LinearLayout 
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:orientation="vertical">
  
  <TabWidget 
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:id="@android:id/tabs">
  </TabWidget>
  
  <FrameLayout 
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="1"
    android:id="@android:id/tabcontent">
    <LinearLayout 
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:id="@+id/widget_layout_red"
      android:background="#ff0000"
      android:orientation="vertical">
    </LinearLayout>
    
     <LinearLayout 
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:id="@+id/widget_layout_yellow"
      android:background="#FCD209"
      android:orientation="vertical">
     </LinearLayout>
     <LinearLayout 
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:id="@+id/widget_layout_blue"
      android:background="#0000E3"
      android:orientation="vertical">
     </LinearLayout>
  </FrameLayout>
 </LinearLayout>
</TabHost>

3.Manifest文件

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
  package="com.wicresoft.myandroid"
  android:versionCode="1"
  android:versionName="1.0" >

  <uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="19" />

  <application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
      android:name="com.wicresoft.activity.mainActivity"
      android:label="@string/app_name">
      <intent-filter>
        <action android:name="android.intent.action.MAIN"/>
        <category android:name="android.intent.category.LAUNCHER"/>
      </intent-filter>
    </activity>
  </application>

</manifest>

4.效果



感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

相关文章

  • Android自定义View实现游戏摇杆键盘的方法示例

    Android自定义View实现游戏摇杆键盘的方法示例

    Android进阶过程中有一个绕不开的话题——自定义View。最近在做项目中又遇到了,所以下面这篇文章主要给大家介绍了利用Android自定义View实现游戏摇杆键盘的相关资料,操作方式类似王者荣耀的摇杆操作,文中通过示例代码介绍的非常详细,需要的朋友们下面来一起看看吧。
    2017-07-07
  • 探讨:android项目开发 统筹兼顾 需要考虑的因素

    探讨:android项目开发 统筹兼顾 需要考虑的因素

    本篇文章是对基于android项目开发 统筹兼顾 需要考虑的因素进行了详细的分析介绍,需要的朋友参考下
    2013-06-06
  • Android自定义UI手势密码改进版源码下载

    Android自定义UI手势密码改进版源码下载

    这篇文章主要介绍了Android自定义UI手势密码改进版,为大家提供了手势密码源码下载,,具有一定的实用性,感兴趣的小伙伴们可以参考一下
    2016-10-10
  • Android自定义RadioGroupX实现多行多列布局

    Android自定义RadioGroupX实现多行多列布局

    这篇文章主要为大家详细介绍了Android自定义RadioGroupX实现多行多列布局,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2021-09-09
  • 读取android根目录下的文件或文件夹实例

    读取android根目录下的文件或文件夹实例

    本篇文章主要介绍了读取android根目录下的文件或文件夹,具有一定的参考价值,感兴趣的小伙伴们可以参考一下。
    2016-12-12
  • Android自定view画圆效果

    Android自定view画圆效果

    这篇文章主要为大家详细介绍了Android自定view画圆效果,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2017-10-10
  • Android中定时执行任务的3种实现方法(推荐)

    Android中定时执行任务的3种实现方法(推荐)

    下面小编就为大家带来一篇Android中定时执行任务的3种实现方法(推荐)。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2016-11-11
  • Android 自定View实现仿QQ运动步数圆弧及动画效果

    Android 自定View实现仿QQ运动步数圆弧及动画效果

    这篇文章主要介绍了Android自定义view实现高仿QQ运动步数圆弧及动画效果的实例代码,本文涉及到绘制圆弧需要具备的知识点,需要的朋友可以参考下
    2016-10-10
  • Android Studio实现简易计算器设计

    Android Studio实现简易计算器设计

    这篇文章主要为大家详细介绍了Android Studio实现简易计算器设计,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2022-05-05
  • Android协程的7个重要知识点汇总

    Android协程的7个重要知识点汇总

    在现代Android应用开发中,协程(Coroutine)已经成为一种不可或缺的技术,它不仅简化了异步编程,还提供了许多强大的工具和功能,可以在高阶场景中发挥出色的表现,本文将深入探讨Coroutine重要知识点,帮助开发者更好地利用Coroutine来构建高效的Android应用
    2023-09-09

最新评论