Android Fragment 基本了解(图文介绍)

Fragment

Android是在Android 3.0 (API level 11)开始引入Fragment的。

可以把Fragment想成Activity中的模块,这个模块有自己的布局,有自己的生命周期,单独处理自己的输入,在Activity运行的时候可以加载或者移除Fragment模块。

可以把Fragment设计成可以在多个Activity中复用的模块。

当开发的应用程序同时适用于平板电脑和手机时,可以利用Fragment实现灵活的布局,改善用户体验。

如图:

 

Fragment的生命周期

因为Fragment必须嵌入在Acitivity中使用,所以Fragment的生命周期和它所在的Activity是密切相关的。

如果Activity是暂停状态,其中所有的Fragment都是暂停状态;如果Activity是stopped状态,这个Activity中所有的Fragment都不能被启动;如果Activity被销毁,那么它其中的所有Fragment都会被销毁。

但是,当Activity在活动状态,可以独立控制Fragment的状态,比如加上或者移除Fragment。

当这样进行fragment transaction(转换)的时候,可以把fragment放入Activity的back stack中,这样用户就可以进行返回操作。

 

Fragment的使用相关

使用Fragment时,需要继承Fragment或者Fragment的子类(DialogFragment, ListFragment, PreferenceFragment, WebViewFragment),所以Fragment的代码看起来和Activity的类似。

使用Support Library

Support Library是一个提供了API库函数的JAR文件,这样就可以在旧版本的Android上使用一些新版本的APIs。

比如android-support-v4.jar.它的完整路径是:

<sdk>/extras/android/support/v4/android-support-v4.jar.

它就提供了Fragment的APIs,使得在Android 1.6 (API level 4)以上的系统都可以使用Fragment。

为了确定没有在旧版本系统上使用新版本的APIs,需要如下导入语句:

复制代码 代码如下:

import android.support.v4.app.Fragment;

import android.support.v4.app.FragmentManager;

同时应该将上述的包拷入libs项目下的libs文件夹,然后在项目的Properties中添加:右键单击项目,选Properties,左边选Java Build Path,然后Add External JARs…,添加android-support-v4.jar.

 

当创建包含Fragment的Activity时,如果用的是Support Library,那么继承的就应该是FragmentActivity而不是Activity。

必须实现的三个回调函数

onCreate()

系统在创建Fragment的时候调用这个方法,这里应该初始化相关的组件,一些即便是被暂停或者被停止时依然需要保留的东西。

onCreateView()

当第一次绘制Fragment的UI时系统调用这个方法,必须返回一个View,如果Fragment不提供UI也可以返回null。

注意,如果继承自ListFragment,onCreateView()默认的实现会返回一个ListView,所以不用自己实现。

onPause()

当用户离开Fragment时第一个调用这个方法,需要提交一些变化,因为用户很可能不再返回来。

实现Fragment的UI

提供Fragment的UI,必须实现onCreateView()方法。

假设Fragment的布局设置写在example_fragment.xml资源文件中,那么onCreateView()方法可以如下写:

复制代码 代码如下:

public static class ExampleFragment extends Fragment

{

@Override

public View onCreateView(LayoutInflater inflater, ViewGroup container,

Bundle savedInstanceState)

{

// Inflate the layout for this fragment

return inflater.inflate(R.layout.example_fragment, container, false);

}

}

onCreateView()中container参数代表该Fragment在Activity中的父控件;savedInstanceState提供了上一个实例的数据。

inflate()方法的三个参数:

第一个是resource ID,指明了当前的Fragment对应的资源文件;

第二个参数是父容器控件;

第三个布尔值参数表明是否连接该布局和其父容器控件,在这里的情况设置为false,因为系统已经插入了这个布局到父控件,设置为true将会产生多余的一个View Group。

把Fragment加入Activity

当Fragment被加入Activity中时,它会处在对应的View Group中。

Fragment有两种加载方式:一种是在Activity的layout中使用标签<fragment>声明;另一种方法是在代码中把它加入到一个指定的ViewGroup中。

另外,Fragment它可以并不是Activity布局中的任何一部分,它可以是一个不可见的部分。这部分内容先略过。

加载方式1:通过Activity的布局文件将Fragment加入Activity

在Activity的布局文件中,将Fragment作为一个子标签加入即可。

如:

复制代码 代码如下:

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

android:orientation="horizontal"

android:layout_width="match_parent"

android:layout_height="match_parent">

<fragment android:name="com.example.news.ArticleListFragment"

android:id="@+id/list"

android:layout_weight="1"

android:layout_width="0dp"

android:layout_height="match_parent" />

<fragment android:name="com.example.news.ArticleReaderFragment"

android:id="@+id/viewer"

android:layout_weight="2"

android:layout_width="0dp"

android:layout_height="match_parent" />

</LinearLayout>

其中android:name属性填上你自己创建的fragment的完整类名。

当系统创建这个Activity的布局文件时,系统会实例化每一个fragment,并且调用它们的onCreateView()方法,来获得相应fragment的布局,并将返回值插入fragment标签所在的地方。

有三种方法为Fragment提供ID:

android:id属性:唯一的id

android:tag属性:唯一的字符串

如果上面两个都没提供,系统使用容器view的ID。

加载方式2:通过编程的方式将Fragment加入到一个ViewGroup中

当Activity处于Running状态下的时候,可以在Activity的布局中动态地加入Fragment,只需要指定加入这个Fragment的父View Group即可。

首先,需要一个FragmentTransaction实例: 

FragmentManager fragmentManager = getFragmentManager()

FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();(注,如果import android.support.v4.app.FragmentManager;那么使用的是:FragmentManager fragmentManager = getSupportFragmentManager();)

之后,用add()方法加上Fragment的对象:

ExampleFragment fragment = new ExampleFragment();

fragmentTransaction.add(R.id.fragment_container, fragment);

fragmentTransaction.commit();

其中第一个参数是这个fragment的容器,即父控件组。

最后需要调用commit()方法使得FragmentTransaction实例的改变生效。

实例

练习的例子:

写一个类继承自Fragment类,并且写好其布局文件(本例中是两个TextView),在Fragment类的onCreateView()方法中加入该布局。

之后用两种方法在Activity中加入这个fragment:

第一种是在Activity的布局文件中加入<fragment>标签;

第二种是在Activity的代码中使用FragmentTransaction的add()方法加入fragment。

贴出代码:

自己定义的fragment类: 

复制代码 代码如下:

ExampleFragment.java

package com.example.learningfragment;

import android.os.Bundle;

import android.support.v4.app.Fragment;

import android.view.LayoutInflater;

import android.view.View;

import android.view.ViewGroup;

public class ExampleFragment extends Fragment

{

//三个一般必须重载的方法

@Override

public void onCreate(Bundle savedInstanceState)

{

// TODO Auto-generated method stub

super.onCreate(savedInstanceState);

System.out.println("ExampleFragment--onCreate");

}

@Override

public View onCreateView(LayoutInflater inflater, ViewGroup container,

Bundle savedInstanceState)

{

System.out.println("ExampleFragment--onCreateView");

return inflater.inflate(R.layout.example_fragment_layout, container, false);

}

@Override

public void onPause()

{

// TODO Auto-generated method stub

super.onPause();

System.out.println("ExampleFragment--onPause");

}

@Override

public void onResume()

{

// TODO Auto-generated method stub

super.onResume();

System.out.println("ExampleFragment--onResume");

}

@Override

public void onStop()

{

// TODO Auto-generated method stub

super.onStop();

System.out.println("ExampleFragment--onStop");

}

}

fragment的布局文件:

复制代码 代码如下:

example_fragment_layout.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" >

<TextView

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:text="@string/num1"

/>

<TextView

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:text="@string/num2"

/>

</LinearLayout>

主Activity:

复制代码 代码如下:

LearnFragment.java

package com.example.learningfragment;

import android.os.Bundle;

import android.support.v4.app.FragmentActivity;

import android.support.v4.app.FragmentManager;

import android.support.v4.app.FragmentTransaction;

public class LearnFragment extends FragmentActivity

{

@Override

public void onCreate(Bundle savedInstanceState)

{

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_learn_fragment);

//在程序中加入Fragment

FragmentManager fragmentManager = getSupportFragmentManager();

FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();

ExampleFragment fragment = new ExampleFragment();

fragmentTransaction.add(R.id.linear, fragment);

fragmentTransaction.commit();

}

}

Activity的布局文件:

复制代码 代码如下:

activity_learn_fragment.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

xmlns:tools="http://schemas.android.com/tools"

android:layout_width="match_parent"

android:layout_height="match_parent"

android:orientation="vertical"

>

<Button

android:id="@+id/btn1"

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:text="@string/btn1"

/>

<fragment

android:name="com.example.learningfragment.ExampleFragment"

android:id="@+id/fragment1"

android:layout_width="match_parent"

android:layout_height="wrap_content"

/>

<Button

android:id="@+id/btn2"

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:text="@string/btn2"

/>

<LinearLayout

xmlns:android="http://schemas.android.com/apk/res/android"

android:id="@+id/linear"

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:orientation="vertical"

>

<Button

android:id="@+id/btn3"

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:text="@string/btn3"

/>

</LinearLayout>

</LinearLayout>

运行结果如下:

可以看到第二种方式加入fragment的时候,指定了父容器(一个线性布局)的id,其中已经有一个Button 3,所以fragment加在其后。

参考资源

Fragment类文档:

http://developer.android.com/reference/android/app/Fragment.html

Training:Building a Dynamic UI with Fragments

http://developer.android.com/training/basics/fragments/index.html

Fragments Develop Guide:

http://developer.android.com/guide/components/fragments.html

时间: 2024-09-29 23:09:57

Android Fragment 基本了解(图文介绍)的相关文章

Android Fragment 基本了解(图文介绍)_Android

Fragment Android是在Android 3.0 (API level 11)开始引入Fragment的. 可以把Fragment想成Activity中的模块,这个模块有自己的布局,有自己的生命周期,单独处理自己的输入,在Activity运行的时候可以加载或者移除Fragment模块. 可以把Fragment设计成可以在多个Activity中复用的模块. 当开发的应用程序同时适用于平板电脑和手机时,可以利用Fragment实现灵活的布局,改善用户体验. 如图:  Fragment的生命

android 9PNG图片制作过程(图文介绍)

在android开发的过程中我们经常因为没有好的美工图片失真,这样使界面看起来要逊色很多,有的时候可能我们会想在drawable-hdpi,ldpi,mdpi下放不同分辨率的图片,这样虽然可以有效避免图片失真,但是这样一是麻烦而是图片资源似的整个项目太大.所以有时候我们想要是有些图片可以拉伸而不失真多好啊,这时候我们就要想起android为我们提供的9.png格式的图片了,9.png格式的图片是安卓平台上新创的一种被拉伸却不失真的玩意. 学会了这种9PNG图片的制作,我们以后做项目的时候一些因为

[Android]Fragment、Activity比较——Android碎片介绍

Fragment是Android honeycomb 3.0新增的概念,Fragment名为碎片不过却和Activity十分相似,下面介绍下Android Fragment的作用和用法.Fragment用来描述一些行为或一部分用户界面在一个Activity中,你可以合并多个fragment在一个单独的activity中建立多个UI面板,同时重用fragment在多个activity中.你可以认为fragment作为一个activity中的一节模块 ,fragment有自己的生命周期,接收自己的输

Android fragment笔记整理

一直在用Fragment,但是没有系统的整理过,Google了一下相关文章,看到了几篇,将几篇还不错的文章重点整理了下,很多是直接Copy的,只为做个笔记,以后翻来看比较方便,建议大家看一下下面几篇,相信会有一些收获的. Android Fragment 真正的完全解析(上)http://blog.csdn.net/lmj623565791/article/details/37970961 Android Fragment 真正的完全解析(下)http://blog.csdn.net/lmj62

Android Fragment多层嵌套重影问题的解决方法_Android

1解决bug的思想: //step1:当bug被发现(排除极低偶然性,单次性,开发工具导致) //step2:根据经验判断bug的重现场景,多次测试,直到精准的定位bug //step3:根据重现场景找到对应的代码 //step4:分析区域代码是否会影响到其他功能. //step5:做好数据的备份工作.(做好代码重构和恢复的准备,这样你才能肆无忌惮的捣鼓代码) //step6:修复代码的过程中,你会发现可能有多种解决方案.试着采取不影响主线的解决方案.以免影响到其他的代码. //step7:回顾

深入浅析 Android Fragment(上篇)_Android

自从Fragment出现,曾经有段时间,感觉大家谈什么都能跟Fragment谈上关系,做什么都要问下Fragment能实现不~~~哈哈,是不是有点过~~~ 为了让界面可以在平板上更好地展示,Android在3.0版本引入了Fragment(碎片)功能,它非常类似于Activity,可以像Activity一样包含布局.Fragment通常是嵌套在Activity中使用的,现在想象这种场景:有两个Fragment,Fragment 1包含了一个ListView,每行显示一本书的标题.Fragment

Android Fragment(动态,静态)碎片详解及总结_Android

Android Fragment(动态,静态)碎片详解 一.Fragment的相关概念(一)Fragment的基础知识       Fragment是Android3.0新增的概念,中文意思是碎片,它与Activity十分相似,用来在一个 Activity中描述一些行为或一部分用户界面.使用多个Fragment可以在一个单独的Activity中建 立多个UI面板,也可以在多个Activity中使用Fragment.        Fragment拥有自己的生命 周期和接收.处理用户的事件,这样就

Android Fragment使用之实例演示_Android

          Fragment是Android honeycomb 3.0新增的概念,在如何使用Android Fragment中做了关于Fragment的详细介绍.本文则主要是通过实例的方式让大家更直观的了解Fragment的使用方法.        首先贴上实例的运行效果截图:        效果图的左边是一个列表,右边是列表item的详情.        先看一下布局文件(layout): XML/HTML代码 <?xml version="1.0″ encoding=&quo

Android Fragment 实例

Fragment是Android honeycomb 3.0新增的概念,在Android--Fragment介绍.Android Fragment使用.Android FragmentManage FragmentTransaction介绍中做了关于Fragment的详细介绍.这一片主要通过一个实例了解Fragment的使用. 先看下实例效果图: 效果图的左边是一个列表,右边是列表item的详情. 先看一下布局文件(layout): <?xml version="1.0″ encoding