FragmentTabHost的应用
原创)FragmentTabHost的应用(fragment学习系列文章之二)
接着研究,在实际项目中我们我们事实上常常看到上面(或者以下)是一个类似于tab标签的东西,以下是真正的内容区域。点击不同标签内容区域会显示不同的内容。曾经用过一个TabHost的组件,如今貌似过时了,大概是由于有了fragment,被FragmentTabHost代替了。闲言少叙,先看一下官方文档的描写叙述,了解一个类的使用方法,看官方文档,是最快和最准确的
原来这个家伙来自于android.support.v4.app这个包下,继承自 TabHost ,而且实现了 TabHost.OnTabChangeListener 接口。文档上也直接放了两个样例。一个是在Activity下包括多个fragment。注意这个activity是v4包下的 FragmentActivity。
public class FragmentTabs extends FragmentActivity {
private FragmentTabHost mTabHost; @Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState); setContentView(R.layout.fragment_tabs);
mTabHost = (FragmentTabHost)findViewById(android.R.id.tabhost);
mTabHost.setup(this, getSupportFragmentManager(), R.id.realtabcontent); mTabHost.addTab(mTabHost.newTabSpec("simple").setIndicator("Simple"),
FragmentStackSupport.CountingFragment.class, null);
mTabHost.addTab(mTabHost.newTabSpec("contacts").setIndicator("Contacts"),
LoaderCursorSupport.CursorLoaderListFragment.class, null);
mTabHost.addTab(mTabHost.newTabSpec("custom").setIndicator("Custom"),
LoaderCustomSupport.AppListFragment.class, null);
mTabHost.addTab(mTabHost.newTabSpec("throttle").setIndicator("Throttle"),
LoaderThrottleSupport.ThrottledLoaderListFragment.class, null);
}
}
还有就是在fragment内部包括fragment的时候也能够使用FragmentTabHost。
官方给出的栗子例如以下:
public class FragmentTabsFragmentSupport extends Fragment {
private FragmentTabHost mTabHost; @Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
mTabHost = new FragmentTabHost(getActivity());
mTabHost.setup(getActivity(), getChildFragmentManager(), R.id.fragment1); mTabHost.addTab(mTabHost.newTabSpec("simple").setIndicator("Simple"),
FragmentStackSupport.CountingFragment.class, null);
mTabHost.addTab(mTabHost.newTabSpec("contacts").setIndicator("Contacts"),
LoaderCursorSupport.CursorLoaderListFragment.class, null);
mTabHost.addTab(mTabHost.newTabSpec("custom").setIndicator("Custom"),
LoaderCustomSupport.AppListFragment.class, null);
mTabHost.addTab(mTabHost.newTabSpec("throttle").setIndicator("Throttle"),
LoaderThrottleSupport.ThrottledLoaderListFragment.class, null); return mTabHost;
} @Override
public void onDestroyView() {
super.onDestroyView();
mTabHost = null;
}
注意这个fragment必须是v4包下的fragment。
tabhost的XML布局文件例如以下:
<android.support.v4.app.FragmentTabHost
android:id="@android:id/tabhost"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/line" > <TabWidget
android:id="@android:id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
</TabWidget>
</android.support.v4.app.FragmentTabHost> <RelativeLayout
android:id="@+id/fragment_multi"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@android:id/tabhost"
android:background="#FFFFFF" />
注意: FragmentTabHost是v4包下的类。一定要写全包名和类名。
写完了布局文件。接着研究java代码。
mTabHost = (FragmentTabHost)findViewById(android.R.id.tabhost);
先把tabhost找到,也能够把context传进去直接new出来。
mTabHost.setup(this, getSupportFragmentManager(), R.id.realtabcontent);
对tabhost做初始化的操作,可是在activity和在fragment里面这两句代码是不一样的,fragment的FragmentManager一定要写成 getChildFragmentManager()。说明是他子fragment的manager。
mTabHost.addTab(mTabHost.newTabSpec("simple").setIndicator("Simple"),
FragmentStackSupport.CountingFragment.class, null);
然后加入4个Tab,当中 mTabHost.newTabSpec("simple")这个simple是该Tab的tag。 setIndicator("Simple")是标签显示的label,有三个重载方法,
setIndicator(CharSequence label);
setIndicator(CharSequence label, Drawable icon);
setIndicator(View view)
从參数名字就能够看出来。就不多做解释,当中一和二是系统提供的布局,第三种能够自己定义自己想要的view。
FragmentStackSupport.CountingFragment.class
是要加入的fragment字节码,最后一个參数是一个bundle类型的tag。
事实上到这个地方已经大功告成。我们不须要add。replace等等一切对fragment的操作,FragmentTabHost很强大,他会对所加入的fragment进行管理,保存栈信息和恢复栈信息等一切操作,比方我的fragment内部有三个子fragment,我退出该fragment的时候开启的是第二个子fragment,下次我再进入该fragment的时候依旧会开启第二个子fragment。且看 FragmentTabHost源代码中对保存,和恢复的操作:
@Override
protected Parcelable onSaveInstanceState() {
Parcelable superState = super.onSaveInstanceState();
SavedState ss = new SavedState(superState);
ss.curTab = getCurrentTabTag();
return ss;
} @Override
protected void onRestoreInstanceState(Parcelable state) {
SavedState ss = (SavedState)state;
super.onRestoreInstanceState(ss.getSuperState());
setCurrentTabByTag(ss.curTab);
}
在该fragment退出的时候会自己主动运行 onSaveInstanceState()方法。把当前打开的fragment的TabTag通过 Parcelable的方式 记录下来,然后当再次进入到该fragment的时候会自己主动运行OnRestoreInstanceState(Parcelable state)方法,把之前保存的状态恢复,打开记录的TabTag相应的fragment
通过代码实际检验。即使退出的时候是打开的第二个fragment。可是再次进来的时候也会运行一遍第一个fragment的生命周期方法。主要是由于tabhost要有一个默认的打开界面。
且看他的addTab方法
public void addTab(TabHost.TabSpec tabSpec, Class<?> clss, Bundle args) {
tabSpec.setContent(new DummyTabFactory(mContext));
String tag = tabSpec.getTag(); TabInfo info = new TabInfo(tag, clss, args); if (mAttached) {
// If we are already attached to the window, then check to make
// sure this tab's fragment is inactive if it exists. This shouldn't
// normally happen.
info.fragment = mFragmentManager.findFragmentByTag(tag);
if (info.fragment != null && !info.fragment.isDetached()) {
FragmentTransaction ft = mFragmentManager.beginTransaction();
ft.detach(info.fragment);
ft.commit();
}
} mTabs.add(info);
addTab(tabSpec);
}
最后一句是addTab(tabSpec)。这是他的父类TabHost的方法,跟踪一下addTab方法,发现他有这样一句代码:
if (mCurrentTab == -1) {
setCurrentTab(0);
}
也就是当前没有Tab的时候,会指定第0个元素为当前的Tab。所以会运行他的生命周期方法。
另外FragmentTabHost另一个重要的方法就是 setOnTabChangedListener (TabHost.OnTabChangeListener l)
就是当页面发生变化的时候,设置回调监听接口,这个接口仅仅有一个方法 public void onTabChanged(String tabId),事实上參数就是Tab的Tag。
各位看官,事实上这是一个非常实用的方法。比方你在给你自己定义的Tab设置背景的时候。这个就能够派上用途了。
最后。我们在项目中事实上是有一个个性化的需求的,比方说我想直接跳到fragment的第三个子fragment而不是按之间栈里保存的状态,经过研究
有一个比較笨的方法。希望大家批评指正并提出更好的解决方式。
写一个自己的类并继承FragmentTabHost:
package com.example.myfragment; import android.content.Context;
import android.os.Parcelable;
import android.support.v4.app.FragmentTabHost;
import android.util.AttributeSet; public class MyTabHost extends FragmentTabHost { public MyTabHost(Context context) {
super(context);
} public MyTabHost(Context context, AttributeSet attrs) {
super(context, attrs);
} String tag = null; public void setTag(String tag) {
this.tag = tag;
} public String getTag() {
return tag;
} @Override
protected void onRestoreInstanceState(Parcelable state) {
super.onRestoreInstanceState(state);
if (tag != null)
setCurrentTabByTag(tag);
} @Override
protected void onAttachedToWindow() {
super.onAttachedToWindow();
if (tag != null) {
onTabChanged("alwaysContact");
setCurrentTabByTag("alwaysContact");
}
}
}
当你想跳到fragment下的哪个子标签的时候,在代码中调用setTag方法,就可以。如:
public static Fragment3 getInstance(Bundle bundle) {
Fragment3 instance = new Fragment3();
arg = bundle;
if (bundle != null)
instance.setArguments(bundle);
return instance;
}
View v = inflater.inflate(R.layout.fragment3, container, false);
tabhost = (FragmentTabHost) v.findViewById(android.R.id.tabhost);
if (arg != null) {
tabhost.setTag(arg.getString("currentTag"));
}
齐活。
在上一篇文章中,我们花了大量的篇幅来解说Fragment这个新引进类的使用,目的就是为了让大家可以牢牢的掌握它的用法,以便读者在今后的开发中可以熟练的使用它。
一、实现效果图
二、项目project结构
三、具体代码编写
1、主tab布局界面,main_tab_layout:
<? 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/maintab_toolbar_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、Tabbutton选项布局,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、fragment布局界面。这里仅仅列出一个,fragment_1.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" > <ImageView
android:id="@+id/imageview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scaleType="fitCenter"
android:src="@drawable/xianjian01" >
</ImageView> </LinearLayout>
4、Tab选项的自己定义button资源文件。列出当中一个button,tab_home_btn:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:drawable="@drawable/icon_home_sel" android:state_selected="true"/>
<item android:drawable="@drawable/icon_home_nor"/> </selector>
5、Tab选项button背景资源文件。selector_tab_background.xml:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:drawable="@drawable/home_btn_bg" android:state_pressed="true"/>
<item android:drawable="@drawable/home_btn_bg" android:state_selected="true"/> </selector>
6、主Activity类,MainTabActivity.Java:
package com.yangyu.mycustomtab02; import android.os.Bundle;
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; /**
* @author yangyu
* 功能描写叙述:自己定义TabHost
*/
public class MainTabActivity extends FragmentActivity{
//定义FragmentTabHost对象
private FragmentTabHost mTabHost; //定义一个布局
private LayoutInflater layoutInflater; //定义数组来存放Fragment界面
private Class fragmentArray[] = {FragmentPage1.class,FragmentPage2.class,FragmentPage3.class,FragmentPage4.class,FragmentPage5.class}; //定义数组来存放button图片
private int mImageViewArray[] = {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}; //Tab选项卡的文字
private String mTextviewArray[] = {"首页", "消息", "好友", "广场", "很多其它"}; public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main_tab_layout); initView();
} /**
* 初始化组件
*/
private void initView(){
//实例化布局对象
layoutInflater = LayoutInflater.from(this); //实例化TabHost对象,得到TabHost
mTabHost = (FragmentTabHost)findViewById(android.R.id.tabhost);
mTabHost.setup(this, getSupportFragmentManager(), R.id.realtabcontent); //得到fragment的个数
int count = fragmentArray.length; for(int i = 0; i < count; i++){
//为每个Tabbutton设置图标、文字和内容
TabSpec tabSpec = mTabHost.newTabSpec(mTextviewArray[i]).setIndicator(getTabItemView(i));
//将Tabbutton加入进Tab选项卡中
mTabHost.addTab(tabSpec, fragmentArray[i], null);
//设置Tabbutton的背景
mTabHost.getTabWidget().getChildAt(i).setBackgroundResource(R.drawable.selector_tab_background);
}
} /**
* 给Tabbutton设置图标和文字
*/
private View getTabItemView(int index){
View view = layoutInflater.inflate(R.layout.tab_item_view, null); ImageView imageView = (ImageView) view.findViewById(R.id.imageview);
imageView.setImageResource(mImageViewArray[index]); TextView textView = (TextView) view.findViewById(R.id.textview);
textView.setText(mTextviewArray[index]); return view;
}
}
7、Fragment页面,FragmentPage1.java:
package com.yangyu.mycustomtab02; import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup; public class FragmentPage1 extends Fragment{ @Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,Bundle savedInstanceState) {
return inflater.inflate(R.layout.fragment_1, null);
}
}
FragmentTabHost的应用的更多相关文章
- FragmentTabHost的基本用法
开通博客以来已经约莫1个月了.几次想提笔写写东西,但总是由于各种各样的原因并没有开始.现在,年假刚结束,项目也还没有开始,但最终促使我写这篇博客的是,看了一篇博友写的新年计划,说是要在新的一年中写50 ...
- FragmentTabHost + Fragment 使用小记
由于业务需要,需要在使用Activity的顶部使用一个导航栏,点击导航栏的tab,下面显示内容.决定采用项目中已经使用过的FragmentTabHost + Fragment的方式实现.不同的是之前的 ...
- 解决FragmentTabHost切换标题栏变更问题
现在都流行FragmentTabHost布局.但是所有的fragment都是共享一个actionbar,但是我们又想给每个fragment定义自定义的标题栏.百度google了好久也没有找到解决方案. ...
- 使用FragmentTabHost+TabLayout+ViewPager实现双层嵌套Tab
大多数应用程序都会在底部使用3~5个Tab对应用程序的主要功能进行划分,对于一些信息量非常大的应用程序,还需要在每个Tab下继续划分子Tab对信息进行分类显示. 本文实现采用FragmentTabHo ...
- android FragmentActivity+FragmentTabHost+Fragment框架布局
这周比较闲,计划系统的学习一下android开发,我本是一名IOS程序员,对手机开发还是有自己的一套思路的, 固这套思路用到我当前学android上了,先选择从Main页面的tabbar部分代码入手, ...
- FragmentTabHost
FragmentTabHost public class FragmentTabHost extends TabHost implements TabHost.OnTabChangeListener ...
- FragmentTabHost+ViewPager实现底部按钮
package com.example.fragmenttabdemo; import java.util.ArrayList; import java.util.List; import andro ...
- Android -- FragmentTabHost实现微信底部切换
1,在商城类的项目中我们开始一个项目的时候经常出现这样的需求,如下图所示: 下面使用户可以切换的模块,上面是对应的模块的详细内容,实现这个效果有很多方式,可以使用radiobutton+fragmen ...
- 使用fragmenttabhost后,子fragment怎么获取ID?怎么用getSharedPreferences
使用fragmenttabhost后,子fragment怎么获取ID?怎么用getSharedPreferences public View onCreateView(LayoutInflater i ...
- 让多个Fragment 切换时不重新实例化、FragmentTabHost切换Fragment时避免UI重新加载
http://www.tuicool.com/articles/FJ7VBb FragmentTabHost切换Fragment时避免UI重新加载 不过,初次实现时发现有个缺陷,每次FragmentT ...
随机推荐
- python 安装whl文件
对于安装whl格式的文件,首先要安装wheel包 利用 pip install wheel或下载再安装: 下载地址: https://pypi.python.org/pypi/wheel 解压后安装: ...
- 怎样更爽地看PDF杂志
下载了一些PDF的杂志,想着要是全屏双页显示,应该是很爽的,但是,下载了应该foxit reader,还是遇到一些问题: 1.全屏:F11即可 2.全屏后不双页:在选项中,"全屏" ...
- C#返回多个参数 ref及out
out 关键字会导致参数通过引用来传递.这与 ref 关键字类似,不同之处在于 ref 要求变量必须在传递之前进行初始化.若要使用 out 参数,方法定义和调用方法都必须显式使用 out 关键字.例如 ...
- Python 面向对象编程基础
Python 面向对象编程基础 虽然Pthon是解释性语言,但是Pthon可以进行面向对象开发,小到 脚本程序,大到3D游戏,Python都可以做到. 一类: 语法: class 类名: 类属性,方法 ...
- DAS存储未死,再次欲获重生
当我们回想存储发展形态时.我们会想到DAS是最原始最主要的存储方式,在个人电脑.server等低端市场和场景上随处可见. 存储的原始形态也来自于DAS,常见的用于连接DAS和主机系统的协议/标准主要 ...
- MySQL数据库和实例简介
MySQL 单进程多线程,也就是说MySQL实例在系统上表现就是一个进程 该架构类似于SQL Server和Windows版本的Oracle MySQL数据库是由一些列物理文件组成.类似于frm.MY ...
- 关于ibatis的实体类部分属性无法映射
今天在编码中不小心就遇到了一个ibatis初学者偶尔会遇到的问题. 先来看这张图中的DictionPo的部分属性赋值都为空.其实,数据库中是有数据的. 再来看看mapper的写法 上面那个对象查询语句 ...
- android studio提示信息乱码解决方法
在build.gradle文件中加上 android {compileOptions.encoding = "GBK"}就好了
- HDU 5336 XYZ and Drops
Problem Description XYZ is playing an interesting game called "drops". It is played on a r ...
- xtrabackup备份方式搭建一个mysql slave
以前mysql搭建新备库都是在现在业务较小的备库上停止同步或停止数据库,然后拷贝数据库到新备库,配置好新备库后,再开启同步或数据库.然而,这次没有空闲备库用来搭新备库.需要从一个业务繁忙的数据库中搭建 ...