创建一个Fragment
最后更新于:2022-04-01 01:37:34
> 编写:[fastcome1985](https://github.com/fastcome1985) - 原文:[http://developer.android.com/training/basics/fragments/creating.html](http://developer.android.com/training/basics/fragments/creating.html)
- 我们可以把fragment想象成[activity](# "An activity represents a single screen with a user interface.")中一个模块化的部分,它拥有自己的生命周期,接收自己的输入事件,可以在acvitity运行过程中添加或者移除(有点像"子[activity](# "An activity represents a single screen with a user interface.")",可以在不同的[activity](# "An activity represents a single screen with a user interface.")里面重复使用)。这一课教我们将学习继承[Support Library ](http://developer.android.com/tools/support-library/index.html)中的[Fragment](http://developer.android.com/reference/android/support/v4/app/Fragment.html),使应用在Android1.6这样的低版本上仍能保持兼容。
> **Note:** 如果APP的最低API版本是11或以上,则不必使用Support Library,我们可以直接使用API框架中的[Fragment](http://developer.android.com/reference/android/app/Fragment.html),本课主要讲解基于Support Library的API,Support Library有一个特殊的包名,有时与平台版本的API名字存在略微不同。
- 在开始这节课前,必须先让在项目中引用Support Library。如果没有使用过Support Library,可以根据文档 [Support Library Setup](http://developer.android.com/intl/zh-cn/tools/support-library/setup.html) 来设置项目使用Support Library。当然,也可以使用包含[action bar](http://developer.android.com/guide/topics/ui/actionbar.html)的 **v7 appcompat** library。v7 appcompat library 兼容Android2.1(API level 7),也包含了[Fragment](http://developer.android.com/reference/android/support/v4/app/Fragment.html) APIs。
### 创建一个Fragment类
-
创建一个fragment,首先需要继承[Fragment](http://developer.android.com/reference/android/support/v4/app/Fragment.html)类,然后在关键的生命周期方法中插入APP的逻辑,就像[activity](# "An activity represents a single screen with a user interface.")一样。
-
其中一个区别是当创建[Fragment](http://developer.android.com/reference/android/support/v4/app/Fragment.html)的时,必须重写[onCreateView()](http://developer.android.com/reference/android/support/v4/app/Fragment.html#onCreateView(android.view.LayoutInflater, android.view.ViewGroup, android.os.Bundle))回调方法来定义布局。事实上,这是使Fragment运行起来,唯一一个需要我们重写的回调方法。比如,下面是一个自定义布局的示例fragment.
~~~
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.ViewGroup;
public class ArticleFragment extends Fragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
return inflater.inflate(R.layout.article_view, container, false);
}
}
~~~
- 就像[activity](# "An activity represents a single screen with a user interface.")一样,当fragment从[activity](# "An activity represents a single screen with a user interface.")添加或者移除、当[activity](# "An activity represents a single screen with a user interface.")生命周期发生变化时,fragment通过生命周期回调函数管理其状态。例如,当[activity](# "An activity represents a single screen with a user interface.")的onPause()被调用时,它里面的所有fragment的onPause()方法也会被触发。
更多关于fragment的声明周期和回调方法,详见[Fragments](http://developer.android.com/guide/components/fragments.html) developer guide.
### 用XML将fragment添加到[activity](# "An activity represents a single screen with a user interface.")
- fragments是可重用的,模块化的UI组件,每个Fragment的实例都必须与一个[FragmentActivity](http://developer.android.com/reference/android/support/v4/app/FragmentActivity.html)关联。我们可以在[activity](# "An activity represents a single screen with a user interface.")的XML布局文件中定义每一个fragment来实现这种关联。
> **Notes:**[FragmentActivity](http://developer.android.com/reference/android/support/v4/app/FragmentActivity.html)是Support Library提供的一个特殊[activity](# "An activity represents a single screen with a user interface.") ,用于处理API11版本以下的fragment。如果我们APP中的最低版本大于等于11,则可以使用普通的[Activity](# "An activity represents a single screen with a user interface.")。
- 下面是一个XML布局的例子,当屏幕被认为是large(用目录名称中的`large`字符来区分)时,它在布局中增加了两个fragment.
res/layout-large/news_articles.xml
~~~
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<fragment android:name="com.example.android.fragments.HeadlinesFragment"
android:id="@+id/headlines_fragment"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="match_parent" />
<fragment android:name="com.example.android.fragments.ArticleFragment"
android:id="@+id/article_fragment"
android:layout_weight="2"
android:layout_width="0dp"
android:layout_height="match_parent" />
</LinearLayout>
~~~
> **Notes:**更多关于不同屏幕尺寸创建不同布局的信息,请阅读[Supporting Different Screen Sizes](#)
- 然后将这个布局文件用到[activity](# "An activity represents a single screen with a user interface.")中。
~~~
import android.os.Bundle;
import android.support.v4.app.FragmentActivity;
public class MainActivity extends FragmentActivity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.news_articles);
}
}
~~~
- 如果用的是[ v7 appcompat library](http://developer.android.com/intl/zh-cn/tools/support-library/features.html#v7-appcompat),[activity](# "An activity represents a single screen with a user interface.")应该改为继承[ActionBarActivity](http://developer.android.com/reference/android/support/v7/app/ActionBarActivity.html),ActionBarActivity是FragmentActivity的一个子类(更多关于这方面的内容,请阅读[Adding the Action Bar](http://developer.android.com/training/basics/actionbar/index.html))。
> **Note:**当通过XML布局文件的方式将Fragment添加进[activity](# "An activity represents a single screen with a user interface.")时,Fragment是不能被动态移除的。如果想要在用户交互的时候把fragment切入与切出,必须在[activity](# "An activity represents a single screen with a user interface.")启动后,再将fragment添加进[activity](# "An activity represents a single screen with a user interface.")。这部分内容将在下节课阐述。