fragment是什么
A Fragment is a piece of an application’s user interface or behavior that can be placed in an Activity.
Fragment是一种可以嵌入在Activity中UI片段或者行为
你可以把Fragment当做模块化的Activity,它有自己的生命周期,布局,能够接手它自己的输入事件。将一个Acitivty分成多个模块,每个模块处理不同的事情。
Fragment 的简单用法
注意:使用Fragment的相关类是,要注意引入的包。
android3.0之前的设备,导入
android.support.v4.app.Fragment;
3.0以后的设备,导入
android.app.Fragment;
使用对应的FragmentManager.使用继承自Fragment的类时,注意它继承的是support包中的Fragment还是app包中的Fragment,有些类只继承自suppor包中的Fragment,使用这些类时,全部Fragment 都用support,FragmentManager 也用support包中的FragmentMananger
创建一个Fragment类
和创建Activity类似,创建Fragment 需要继承自已有的Fragment类,根据应用的逻辑重写相关方法。实现onCreateView()来绘制Fragment的UI,如果Fragment没有UI,不需要重写该方法。
package com.example.test.testfragment.fragment;
import android.app.Fragment;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import com.example.test.testfragment.R;
public class TitleFragment extends Fragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.fragment_main,container,false);
return view;
}
}
和Acitivity一样,Fragment有一系列的生命周期回调方法,实现相关方法,即可管理Fragment的生命周期。
res/layout/fragment_main.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.test.testfragment.MainActivity">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!" />
</RelativeLayout>
在xml文件中使用Fragment
Fragment不能单独使用,必须在Activity内使用。下面在xml文件中添加一个Fragment
/res/layout/activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<fragment
android:name="com.example.test.testfragment.fragment.TitleFragment"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
</fragment>
然后在activity中加载布局文件
package com.example.test.testfragment;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
}
在xnl布局文件中直接添加Fragment并不能体现出fragment的优势,下面在应用运行的时候添加Fragment,创建良好的UI和用户体验。
在运行的时候添加Fragment
可以在应用运行的时候添加Fragment。使用FragmentManager来管理Fragment,用FragmentTransaction来管理Framgent的行为,比如添加,溢出,替换Fragment 。
在一个Activity中呈现多个Fragment时,需要有一个地方来存放Fragment。在布局文件中定义一个container View(容器视图),来放置fragment.下面使用FramenLayout 作为Fragment的容器。
/res/layout/actiivty_main.xml
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
</FrameLayout>
这个布局文件使用一个FrameLayout作为Fragment的容器,必需为FrameLayout添加id ,在代码中要用这个id来找到这个容器。
在Acitivty 中,获取FragmentManager,调用getSupportFragmentManager()或者getFragmentManager()来获得FragmentManager,这里使用的是getFragmentManager(),没有有support包中的Fragment。然后调用beginTrasaction()新建一个FragmentTransaction,使用FragmentTransaction的add()添加Fragment,replace()替换Fragment,remove()删除Fragment.最后调用commit()提交对Fragment做出的改变
下面代码演示了如何为上面的布局添加Fragment
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import com.example.test.testfragment.fragment.TitleFragment;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
if (findViewById(R.id.container) != null){
TitleFragment fragment =new TitleFragment();
//将TitleFragment添加到“conainer"FrameLayout
getFragmentManager()
.beginTransaction()
.add(R.id.container,fragment)
.commit();
}
}
}
替换,移除Fragment和添加Fragment类似,使用FragmentTransaction.replace()替换容器中已经存在的Fragment,FragmentTransaction.remove()移除容器中已经存在的Fragment
替换Fragment
DetailFragment detailFragment = new DetailFragment();
getFragmentManager()
.beginTransaction()
.replace(R.id.container,detailFragment)
.commit();
移除Fragment
getFragmentManager()
.beginTransaction()
.remove(detailFragment)
.commit();
Fragment之间的通信
fragment之间的通信要通过Activity,Fragment不能直接通信
fragment和Activity通信,在fragment中定义一个接口,然后在activity中实现该接口