Android 使用FragmentTabhost代替Tabhost

 更新时间:2017年05月03日 11:14:01   投稿:lqh  
这篇文章主要介绍了Android 使用FragmentTabhost代替Tabhost的相关资料,需要的朋友可以参考下

Android 使用FragmentTabhost代替Tabhost

前言:

现在Fragment使用越来越广了,虽然Fragment寄生在Activity下,但是它的出现对于开发者来说是一件非常幸运的事,使开发的效率更高效了,好了下面就说说 FragmentTabhost的使用,因为Tabhost已经不推荐使用了,现在一般都使用FragmentTabhost!我本身也个菜鸟,就是帮帮新手,因为Fragment是3.0才出现,为了避免3.0以下的使用不了,所以我们要用v4包来支持,不要倒错包哦!大神勿喷!

一:首先我们看看XML:

1.activity_main.xml

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
 android:layout_width="fill_parent" 
 android:layout_height="fill_parent" 
 android:orientation="vertical" > 
 
 <FrameLayout 
  android:id="@+id/realtabcontent" 
  android:layout_width="fill_parent" 
  android:layout_height="0dip" 
  android:layout_weight="1" /> 
 
 <android.support.v4.app.FragmentTabHost 
  android:id="@android:id/tabhost" 
  android:layout_width="fill_parent" 
  android:layout_height="wrap_content" 
  android:background="@drawable/bg_tabhost_bg"> 
 
  <FrameLayout 
   android:id="@android:id/tabcontent" 
   android:layout_width="0dp" 
   android:layout_height="0dp" 
   android:layout_weight="0" />    
 </android.support.v4.app.FragmentTabHost> 
 
</LinearLayout> 

2.tab_item_view.xml

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
 android:layout_width="wrap_content" 
 android:layout_height="wrap_content" 
 android:gravity="center" 
 android:orientation="vertical" > 
 
 <ImageView 
  android:id="@+id/imageview" 
  android:layout_width="wrap_content" 
  android:layout_height="wrap_content" 
  android:focusable="false" 
  android:padding="3dp" 
  android:src="@drawable/tab_home_btn"> 
 </ImageView> 
 
 <TextView 
  android:id="@+id/textview"   
  android:layout_width="wrap_content" 
  android:layout_height="wrap_content" 
  android:text="" 
  android:textSize="10sp" 
  android:textColor="#ffffff"> 
 </TextView> 
 
</LinearLayout> 

3.fragment1.xml 就贴一个Fragment XML吧!其他的几个都一样,只是颜色不一样,呵呵!

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
 android:layout_width="match_parent" 
 android:layout_height="match_parent" 
 android:orientation="vertical" 
 android:background="#FBB55D" > 
  
 
</LinearLayout> 

ok,XML先写完了,那我们看看代码吧!

4.MainActivity

package com.example.fragmenttabhost; 
 
import android.os.Bundle; 
import android.support.v4.app.Fragment; 
import android.support.v4.app.FragmentActivity; 
import android.support.v4.app.FragmentTabHost; 
import android.view.LayoutInflater; 
import android.view.View; 
import android.widget.ImageView; 
import android.widget.TabHost.TabSpec; 
import android.widget.TextView; 
 
import com.example.fragment.Fragment1; 
import com.example.fragment.Fragment2; 
import com.example.fragment.Fragment3; 
import com.example.fragment.Fragment4; 
import com.example.fragment.Fragment5; 
 
/** 
 * 
 * @author zqy 
 * 
 */ 
public class MainActivity extends FragmentActivity { 
 /** 
  * FragmentTabhost 
  */ 
 private FragmentTabHost mTabHost; 
 
 /** 
  * 布局填充器 
  * 
  */ 
 private LayoutInflater mLayoutInflater; 
 
 /** 
  * Fragment数组界面 
  * 
  */ 
 private Class mFragmentArray[] = { Fragment1.class, Fragment2.class, 
   Fragment3.class, Fragment4.class, Fragment5.class }; 
 /** 
  * 存放图片数组 
  * 
  */ 
 private int mImageArray[] = { R.drawable.tab_home_btn, 
   R.drawable.tab_message_btn, R.drawable.tab_selfinfo_btn, 
   R.drawable.tab_square_btn, R.drawable.tab_more_btn }; 
 
 /** 
  * 选修卡文字 
  * 
  */ 
 private String mTextArray[] = { "首页", "消息", "好友", "搜索", "更多" }; 
 /** 
  * 
  * 
  */ 
 public void onCreate(Bundle savedInstanceState) { 
  super.onCreate(savedInstanceState); 
  setContentView(R.layout.activity_main); 
 
  initView(); 
 } 
 
 /** 
  * 初始化组件 
  */ 
 private void initView() { 
  mLayoutInflater = LayoutInflater.from(this); 
 
  // 找到TabHost 
  mTabHost = (FragmentTabHost) findViewById(android.R.id.tabhost); 
  mTabHost.setup(this, getSupportFragmentManager(), R.id.realtabcontent); 
  // 得到fragment的个数 
  int count = mFragmentArray.length; 
  for (int i = 0; i < count; i++) { 
   // 给每个Tab按钮设置图标、文字和内容 
   TabSpec tabSpec = mTabHost.newTabSpec(mTextArray[i]) 
     .setIndicator(getTabItemView(i)); 
   // 将Tab按钮添加进Tab选项卡中 
   mTabHost.addTab(tabSpec, mFragmentArray[i], null); 
   // 设置Tab按钮的背景 
   mTabHost.getTabWidget().getChildAt(i) 
     .setBackgroundResource(R.drawable.selector_tab_background); 
  } 
 } 
 
 /** 
  * 
  * 给每个Tab按钮设置图标和文字 
  */ 
 private View getTabItemView(int index) { 
  View view = mLayoutInflater.inflate(R.layout.tab_item_view, null); 
  ImageView imageView = (ImageView) view.findViewById(R.id.imageview); 
  imageView.setImageResource(mImageArray[index]); 
  TextView textView = (TextView) view.findViewById(R.id.textview); 
  textView.setText(mTextArray[index]); 
 
  return view; 
 } 
 
} 

5.Fragment1.java  Fragment其他几个都一样,指不过XML不一样!

package com.example.fragment; 
 
import android.os.Bundle; 
import android.support.v4.app.Fragment; 
import android.view.LayoutInflater; 
import android.view.View; 
import android.view.ViewGroup; 
 
import com.example.fragmenttabhost.R; 
 
public class Fragment1 extends Fragment{ 
 
 @Override 
 public View onCreateView(LayoutInflater inflater, ViewGroup container, 
   Bundle savedInstanceState) { 
   
  return inflater.inflate(R.layout.fragment1, null);  
 }  
} 

OK 基本上写完了,让我们看看效果!

哈哈,效果还算可以!好了,去吃饭了!

资源下载地址:http://xiazai.jb51.net/201705/yuanma/FragmentTabhost(jb51.net).rar

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

相关文章

  • Android Studio下添加assets目录的实现方法

    Android Studio下添加assets目录的实现方法

    下面小编就为大家带来一篇Android Studio下添加assets目录的实现方法。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2017-03-03
  • android6.0权限动态申请框架permissiondispatcher的方法

    android6.0权限动态申请框架permissiondispatcher的方法

    下面小编就为大家分享一篇android6.0权限动态申请框架permissiondispatcher的方法,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
    2018-01-01
  • Android实现闪屏页效果

    Android实现闪屏页效果

    这篇文章主要为大家详细介绍了Android实现闪屏页效果,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2020-11-11
  • Kotlin by关键字作用及使用介绍

    Kotlin by关键字作用及使用介绍

    Kotlin 中的 by 关键字在 Java 中是没有的,这使我对它感到非常陌生。Kotlin 中为什么要新增 by 关键字呢?by 关键字在 Kotlin 中是如何使用的?本文会介绍 by 关键字的使用分类,具体的示例,Kotlin 内置的 by 使用,希望能够帮助到大家
    2022-10-10
  • Android AsyncTask的优缺点详解

    Android AsyncTask的优缺点详解

    本文主要介绍了Android AsyncTask的优缺点,具有很好的参考价值,下面跟着小编一起来看下吧
    2017-02-02
  • 浅谈Android实践之ScrollView中滑动冲突处理解决方案

    浅谈Android实践之ScrollView中滑动冲突处理解决方案

    涉及到了ViewPager,MapView,ListView,就需要ScrollView来做一下支援,这篇文章主要介绍了浅谈Android实践之ScrollView中滑动冲突处理解决方案,有需要的可以来了解一下。
    2016-12-12
  • android 使用浏览器打开指定页面的实现方法

    android 使用浏览器打开指定页面的实现方法

    这篇文章主要介绍了android 使用浏览器打开指定页面的实现方法,本文通过实例文字说明的形式给大家介绍的非常详细,具有一定的参考借鉴价值,需要的朋友可以参考下
    2018-06-06
  • Android图像处理之泛洪填充算法

    Android图像处理之泛洪填充算法

    这篇文章主要介绍了泛洪填充算法,工作原理是从一个点开始附近像素点,填充成新的颜色,直到封闭区域内的所有像素点都被填充新颜色为止,分享给大家供大家参考
    2018-05-05
  • Android编程开发从零开始编写一个轻量级浏览器

    Android编程开发从零开始编写一个轻量级浏览器

    这篇文章主要为大家介绍了Android编程开发从零开始编写一个轻量级浏览器过程步骤示例,有需要的朋友可以借鉴参考下,希望能够有所帮助祝大家多多进步
    2022-02-02
  • android RecycleView实现下拉刷新和上拉加载

    android RecycleView实现下拉刷新和上拉加载

    这篇文章主要为大家详细介绍了android RecycleView实现下拉刷新和上拉加载,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2020-06-06

最新评论