Android TabHost组件使用方法详解

 更新时间:2016年05月25日 16:23:52   作者:柴华松  
这篇文章主要以实例讲解的方式为大家详细介绍了Android TabHost组件的使用方法,感兴趣的小伙伴们可以参考一下

最近研究了一下Contacts源码,仿照上面自己写了一个TabHostTest程序,现整理如下:

main.xml布局文件:

<?xml version="1.0" encoding="utf-8"?> 
<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"> 
 
 <LinearLayout 
  android:orientation="vertical" 
  android:layout_width="match_parent" 
  android:layout_height="match_parent"> 
 
  <TabWidget android:id="@android:id/tabs" 
   android:layout_width="match_parent" 
   android:layout_height="wrap_content" 
  /> 
 
  <FrameLayout android:id="@android:id/tabcontent" 
   android:layout_width="match_parent" 
   android:layout_height="0dip" 
   android:layout_weight="1" 
  /> 
 </LinearLayout> 
</TabHost> 

inner.xml文件:

<?xml version="1.0" encoding="utf-8"?> 
 
<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"> 
 
 <LinearLayout 
  android:orientation="vertical" 
  android:layout_width="match_parent" 
  android:layout_height="match_parent"> 
 
  <FrameLayout android:id="@android:id/tabcontent" 
   android:layout_width="fill_parent" 
   android:layout_height="0dip" 
   android:layout_weight="1" 
  /> 
   
  <TabWidget android:id="@android:id/tabs" 
   android:layout_width="fill_parent" 
   android:layout_height="wrap_content" 
  /> 
 
 
 </LinearLayout> 
</TabHost>

  Main.java (主Activity类):

package com.android.test; 
 
import android.app.Activity; 
import android.app.TabActivity; 
import android.content.Intent; 
import android.os.Bundle; 
import android.provider.CallLog.Calls; 
import android.provider.Contacts.Intents.UI; 
import android.view.Window; 
import android.widget.TabHost; 
 
public class Main extends TabActivity implements TabHost.OnTabChangeListener { 
 private static final int TAB_INDEX_DIALER = 0; 
 private static final int TAB_INDEX_CALL_LOG = 1; 
 private static final int TAB_INDEX_CONTACTS = 2; 
 private static final int TAB_INDEX_FAVORITES = 3; 
 
 private TabHost mTabHost; 
  
 @Override 
 public void onCreate(Bundle savedInstanceState) { 
  super.onCreate(savedInstanceState); 
 
  final Intent intent = getIntent(); 
 
  requestWindowFeature(Window.FEATURE_NO_TITLE); 
   
  setContentView(R.layout.main); 
 
  mTabHost = getTabHost(); 
  mTabHost.setOnTabChangedListener(this); 
 
  // Setup the tabs 
  setupDialerTab(); 
  setupCallLogTab(); 
  setupContactsTab(); 
  setupFavoritesTab(); 
 
  setCurrentTab(intent); 
 } 
 
 public void onTabChanged(String tabId) { 
   Activity activity = getLocalActivityManager().getActivity(tabId); 
   if (activity != null) { 
    activity.onWindowFocusChanged(true); 
   } 
 } 
  private void setupCallLogTab() { 
   // Force the class since overriding tab entries doesn't work 
   Intent intent = new Intent("com.android.phone.action.RECENT_CALLS"); 
 
   intent.setClass(this, Inner.class); 
   mTabHost.addTab(mTabHost.newTabSpec("call_log") 
     .setIndicator("通话记录", 
       getResources().getDrawable(R.drawable.ic_tab_unselected_recent)) 
     .setContent(intent)); 
  } 
  
 private void setupDialerTab() { 
  Intent intent = new Intent("com.android.phone.action.TOUCH_DIALER"); 
  intent.setClass(this, Inner.class); 
 
  mTabHost.addTab(mTabHost.newTabSpec("dialer") 
    .setIndicator("拨号", 
      getResources().getDrawable(R.drawable.ic_tab_unselected_dialer)) 
    .setContent(intent)); 
 } 
 
 private void setupContactsTab() { 
  Intent intent = new Intent(UI.LIST_DEFAULT); 
  intent.setClass(this, Main.class); 
 
  mTabHost.addTab(mTabHost.newTabSpec("contacts") 
    .setIndicator("通讯录", 
      getResources().getDrawable(R.drawable.ic_tab_unselected_contacts)) 
    .setContent(intent)); 
 } 
 
 private void setupFavoritesTab() { 
  Intent intent = new Intent(UI.LIST_STREQUENT_ACTION); 
  intent.setClass(this, Inner.class); 
 
  mTabHost.addTab(mTabHost.newTabSpec("favorites") 
    .setIndicator("收藏", 
      getResources().getDrawable(R.drawable.ic_tab_unselected_starred)) 
    .setContent(intent)); 
 } 
 
 /** 
  * Sets the current tab based on the intent's request type 
  * 
  * @param intent Intent that contains information about which tab should be selected 
  */ 
 private void setCurrentTab(Intent intent) { 
  // Dismiss menu provided by any children activities 
  Activity activity = getLocalActivityManager(). 
    getActivity(mTabHost.getCurrentTabTag()); 
  if (activity != null) { 
   activity.closeOptionsMenu(); 
  } 
 
  // Tell the children activities that they should ignore any possible saved 
  // state and instead reload their state from the parent's intent 
  intent.putExtra("", true); 
 
  // Choose the tab based on the inbound intent 
  String componentName = intent.getComponent().getClassName(); 
  if (getClass().getName().equals(componentName)) { 
   if (false) { 
    //in a call, show the dialer tab(which allows going back to the call) 
    mTabHost.setCurrentTab(TAB_INDEX_DIALER); 
   } else if ((intent.getFlags() & Intent.FLAG_ACTIVITY_LAUNCHED_FROM_HISTORY) != 0) { 
    // launched from history (long-press home) --> nothing to change 
   } else if (true) { 
    // The dialer was explicitly requested 
    mTabHost.setCurrentTab(TAB_INDEX_DIALER); 
   } 
  } 
 } 
} 

Inner.java类:

package com.android.test; 
 
import android.app.TabActivity; 
import android.content.Intent; 
import android.os.Bundle; 
import android.view.Window; 
import android.widget.TabHost; 
import android.widget.TabWidget; 
import android.widget.TextView; 
 
public class Inner extends TabActivity implements TabHost.OnTabChangeListener { 
 private static final int TAB_INDEX_ALL = 0; 
 private static final int TAB_INDEX_MISSED = 1; 
 private static final int TAB_INDEX_OUTGOING = 2; 
 private static final int TAB_INDEX_RECEIVED = 3; 
 
 private TabHost mTabHost; 
 private TabWidget mTabWidget; 
  
 @Override 
 public void onCreate(Bundle savedInstanceState) { 
  super.onCreate(savedInstanceState); 
  requestWindowFeature(Window.FEATURE_NO_TITLE); 
  setContentView(R.layout.inner); 
 
  mTabHost = getTabHost(); 
  mTabHost.setOnTabChangedListener(this); 
 
  setupTabs(); 
  mTabWidget = mTabHost.getTabWidget(); 
  mTabWidget.setStripEnabled(false); 
 
  for (int i = 0; i < mTabWidget.getChildCount(); i++) { 
 
   TextView tv = (TextView) mTabWidget.getChildAt(i).findViewById( 
     android.R.id.title); 
   tv.setTextColor(this.getResources().getColorStateList( 
     android.R.color.white)); 
    
   tv.setPadding(0, 0, 0,(int) tv.getTextSize()); 
   tv.setText("Tab" + i); 
   mTabWidget.getChildAt(i).getLayoutParams().height =(int ) (3* tv.getTextSize()); 
 
   mTabWidget.getChildAt(i).setBackgroundResource(R.drawable.tab_bg); 
  } 
 } 
 
 public void onTabChanged(String tabId) { 
   
 } 
 
 private void setupTabs() { 
  mTabHost.addTab(mTabHost.newTabSpec("all").setIndicator( 
    getString(R.string.inner)).setContent( 
    new Intent(this, Other.class))); 
  mTabHost.addTab(mTabHost.newTabSpec("Missed").setIndicator( 
    getString(R.string.inner)).setContent( 
    new Intent(this, Other.class))); 
  mTabHost.addTab(mTabHost.newTabSpec("Outgoing").setIndicator( 
    getString(R.string.inner)).setContent( 
    new Intent(this, Other.class))); 
  mTabHost.addTab(mTabHost.newTabSpec("Received").setIndicator( 
    getString(R.string.inner)).setContent( 
    new Intent(this, Other.class))); 
 
 } 
} 

效果图如下:

以上就是本文的全部内容,希望能给大家一个参考,也希望大家多多支持脚本之家。

相关文章

  • Android开发之绘制平面上的多边形功能分析

    Android开发之绘制平面上的多边形功能分析

    这篇文章主要介绍了Android开发之绘制平面上的多边形功能,结合实例形式分析了Android多边形图形绘制的原理、步骤、相关操作技巧与注意事项,需要的朋友可以参考下
    2017-09-09
  • 在Android中高效的加载大图的方法示例

    在Android中高效的加载大图的方法示例

    本篇文章主要介绍了在Android中高效的加载大图的方法示例,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2018-06-06
  • Android 详解沉浸式状态栏的实现流程

    Android 详解沉浸式状态栏的实现流程

    沉浸式就是要给用户提供完全沉浸的体验,使用户有一种置身于虚拟世界之中的感觉。沉浸式模式就是整个屏幕中显示都是应用的内容,没有状态栏也没有导航栏,用户不会被一些系统的界面元素所打扰,让我们来实现下网上传的沸沸扬扬的安卓沉浸式状态栏
    2021-11-11
  • Android Fragment使用之实例演示

    Android Fragment使用之实例演示

    本文主要介绍Android Fragment的知识,这里整理了详细资料及简单示例代码,有需要的朋友可以参考下
    2016-09-09
  • Android自定义View实现拖动选择按钮

    Android自定义View实现拖动选择按钮

    这篇文章主要为大家详细介绍了Android自定义View实现拖动选择按钮的具体代码,感兴趣的小伙伴们可以参考一下
    2016-05-05
  • Android开发中比较耗时的一些操作小结

    Android开发中比较耗时的一些操作小结

    这篇文章主要介绍了Android开发中比较耗时的一些操作小结,本文根据实际开发经验总结了6条比较耗时的编程操作,请大家注意下,需要的朋友可以参考下
    2015-06-06
  • Android 中利用 ksoap2 调用 WebService的示例代码

    Android 中利用 ksoap2 调用 WebService的示例代码

    这篇文章主要介绍了Android 中利用 ksoap2 调用 WebService的示例代码,非常具有实用价值,需要的朋友可以参考下
    2017-09-09
  • Android实现水波纹外扩效果的实例代码

    Android实现水波纹外扩效果的实例代码

    微信曾经推出了一个查找附近好友的功能,大致功能是这样的:屏幕上有一个按钮,长按按钮的时候,会有一圈圈水波纹的动画向外扩散,松手后,动画结束
    2018-05-05
  • Android项目中gradle的执行流程

    Android项目中gradle的执行流程

    大家好,本篇文章主要讲的是Android项目中gradle的执行流程,感兴趣的同学赶快来看一看吧,对你有帮助的话记得收藏一下
    2022-01-01
  • Android开发之获取网络链接状态

    Android开发之获取网络链接状态

    这篇文章主要介绍了Android获取网络链接状态的方法,主要是通过ConnectivityManager类来完成的,需要的朋友可以参考下
    2014-08-08

最新评论