一直想好好研究一下項(xiàng)目中經(jīng)常用到的Fragment。這篇先記錄一下對(duì)Fragment的回退棧的學(xué)習(xí)委造。
@[toc]
一昏兆、什么是Fragment
Fragment是Android3.0之后引入的可嵌入activity中的碎片化組件妇穴,實(shí)現(xiàn)了界面的最大化利用伟骨。有以下幾個(gè)特點(diǎn):
(1)不可獨(dú)立存在携狭,但是有自己的生命周期逛腿。不過因?yàn)榕cactivity關(guān)聯(lián)在一起单默,生命周期會(huì)受activity影響搁廓。
(2) 可靜態(tài)引入也可動(dòng)態(tài)加載境蜕。推薦使用support-v4中的android.support.v4.app.Fragment而非系統(tǒng)內(nèi)置的android.app.Fragment粱年。因前者能讓Fragment在所有Android系統(tǒng)版本中保持功能一致性台诗。
二拉队、Fragment的生命周期
-
先po一張經(jīng)典生命周期圖:
我們可以看到有幾個(gè)關(guān)鍵的回調(diào)方法粱快。
onAttach()
Fragment和Activity建立關(guān)聯(lián)的時(shí)候調(diào)用(獲得activity的傳遞的值)
onCreateView()
為Fragment創(chuàng)建視圖(加載布局)時(shí)調(diào)用(給當(dāng)前的fragment繪制UI布局)
onActivityCreated()
當(dāng)Activity中的onCreate方法執(zhí)行完后調(diào)用(表示activity執(zhí)行oncreate方法完成了的時(shí)候會(huì)調(diào)用此方法)
onDestroyView()
Fragment中的布局被移除時(shí)調(diào)用(表示fragment銷毀相關(guān)聯(lián)的UI布局)
onDetach()
Fragment和Activity解除關(guān)聯(lián)的時(shí)候調(diào)用(脫離activity)
- 不同情況下的方法回調(diào)
當(dāng)一個(gè)fragment第一次被加載到屏幕上的時(shí)候呐舔,會(huì)依次執(zhí)行:
onAttach()
onCreate()
onCreateView()
onActivityCreated()
接著珊拼,當(dāng)這個(gè)fragment對(duì)用戶可見的時(shí)候澎现,會(huì)依次執(zhí)行:
onStart()
onResume()
這個(gè)時(shí)候剑辫,如果該fragment進(jìn)入了停止?fàn)顟B(tài)(“進(jìn)入后臺(tái)模式”)妹蔽,會(huì)依次執(zhí)行:
onPause()
onStop()
若這個(gè)fragment被銷毀了(或者和ta關(guān)聯(lián)的activity被銷毀了),在執(zhí)行了上面兩個(gè)方法之后緊跟著會(huì)執(zhí)行:
onDestroyView()
onDestroy()
onDetach()
此時(shí)該fragment被銷毀并且與activity解除了關(guān)聯(lián)胳岂。
-
前面我們說到乳丰,fragment的生命周期受到ta關(guān)聯(lián)的activity的生命周期的影響~
影響有多大呢产园?看圖說話~
好了什燕,那么如果該fragment沒有被銷毀呢秋冰?當(dāng)ta又重新回到了運(yùn)行狀態(tài)婶熬,會(huì)依次執(zhí)行:
onCreateView()
onActivityCreated()
onStart()
onResume()
因?yàn)闆]有被銷毀赵颅,所以onCreate()不會(huì)被調(diào)用饺谬。
額那什么情況下fragment沒有被銷毀呢?這就和fragment的回退棧有關(guān)啦~
三族展、實(shí)例講述Fragment回退棧
我們知道Activity是以棧的方式進(jìn)行管理的仪缸,F(xiàn)ragment也有類似的方式恰画。
Fragment的回退棧---是用來保存每一次Fragment事務(wù)發(fā)生的變化 如果你將Fragment任務(wù)添加到回退棧拴还,當(dāng)用戶點(diǎn)擊后退按鈕時(shí)片林,將看到上一次的保存的Fragment拇厢。一旦Fragment完全從后退棧中彈出孝偎,用戶再次點(diǎn)擊后退鍵衣盾,則退出當(dāng)前Activity势决。
首先我們先認(rèn)識(shí)下這個(gè)方法:FragmentTransaction.addToBackStack(String)【把當(dāng)前事務(wù)的變化情況添加到回退棧果复,一般傳入null即可】
接下來我們用一個(gè)例子來證明一下其起到的作用以及生命周期是否真的有所不同虽抄。
MainActivity的布局文件
<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" >
<FrameLayout
android:id="@+id/id_content"
android:layout_width="match_parent"
android:layout_height="match_parent" >
</FrameLayout>
</RelativeLayout>
MainActivity.java文件
public class MainActivity extends Activity {
protected void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.activity_main);
FragmentManager fm = getFragmentManager();
FragmentTransaction tx = fm.beginTransaction();
tx.add(R.id.id_content, new FragmentOne(),"ONE");
tx.commit();
}
}
FragmentOne.class文件
public class FragmentOne extends Fragment implements OnClickListener {
private Button mBtn;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.fragment_one, container, false);
mBtn = (Button) view.findViewById(R.id.bn_fragment_one);
mBtn.setOnClickListener(this);
Log.e("onCreateView", "one");
return view;
}
@Override
public void onClick(View v) {
FragmentTwo fTwo = new FragmentTwo();
FragmentManager fm = getFragmentManager();
FragmentTransaction tx = fm.beginTransaction();
tx.replace(R.id.id_content, fTwo, "TWO");
tx.addToBackStack(null);
tx.commit();
}
@Override
public void onAttach(Context context) {
super.onAttach(context);
Log.e("onAttach", "one");
}
@Override
public void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Log.e("onCreate", "one");
}
@Override
public void onActivityCreated(@Nullable Bundle savedInstanceState) {
super.onActivityCreated(savedInstanceState);
Log.e("onActivityCreated", "one");
}
@Override
public void onStart() {
super.onStart();
Log.e("onStart", "one");
}
@Override
public void onResume() {
super.onResume();
Log.e("onResume", "one");
}
@Override
public void onPause() {
super.onPause();
Log.e("onPause", "one");
}
@Override
public void onStop() {
super.onStop();
Log.e("onStop", "one");
}
@Override
public void onDestroy() {
super.onDestroy();
Log.e("onDestroy", "one");
}
@Override
public void onDetach() {
super.onDetach();
Log.e("onDetach", "one");
}
@Override
public void onDestroyView() {
super.onDestroyView();
Log.e("onDestroyView", "one");
}
FragmentTwo.class文件
public class FragmentTwo extends Fragment implements OnClickListener {
private Button mBtn ;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.fragment_two, container, false);
mBtn = (Button) view.findViewById(R.id.bn_fragment_two);
mBtn.setOnClickListener(this);
Log.e("onCreateView", "two");
return view ;
}
@Override
public void onClick(View v) {
FragmentThree fThree = new FragmentThree();
FragmentManager fm = getFragmentManager();
FragmentTransaction tx = fm.beginTransaction();
tx.hide(this);
tx.add(R.id.id_content , fThree, "THREE");
//tx.replace(R.id.id_content, fThree, "THREE");
tx.addToBackStack(null);
tx.commit();
}
@Override
public void onAttach(Context context) {
super.onAttach(context);
Log.e("onAttach", "two");
}
@Override
public void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Log.e("onCreate", "two");
}
@Override
public void onActivityCreated(@Nullable Bundle savedInstanceState) {
super.onActivityCreated(savedInstanceState);
Log.e("onActivityCreated", "two");
}
@Override
public void onStart() {
super.onStart();
Log.e("onStart", "two");
}
@Override
public void onResume() {
super.onResume();
Log.e("onResume", "two");
}
@Override
public void onPause() {
super.onPause();
Log.e("onPause", "two");
}
@Override
public void onStop() {
super.onStop();
Log.e("onStop", "two");
}
@Override
public void onDestroy() {
super.onDestroy();
Log.e("onDestroy", "two");
}
@Override
public void onDetach() {
super.onDetach();
Log.e("onDetach", "two");
}
@Override
public void onDestroyView() {
super.onDestroyView();
Log.e("onDestroyView", "two");
}
FragmentThree.class文件
public class FragmentThree extends Fragment implements OnClickListener {
private Button mBtn;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.fragment_three, container, false);
mBtn = (Button) view.findViewById(R.id.bn_fragment_three);
mBtn.setOnClickListener(this);
Log.e("onCreateView", "three");
return view;
}
@Override
public void onClick(View v) {
Toast.makeText(getActivity(), " i am a btn in Fragment three",
Toast.LENGTH_SHORT).show();
}
@Override
public void onAttach(Context context) {
super.onAttach(context);
Log.e("onAttach", "three");
}
@Override
public void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Log.e("onCreate", "three");
}
@Override
public void onActivityCreated(@Nullable Bundle savedInstanceState) {
super.onActivityCreated(savedInstanceState);
Log.e("onActivityCreated", "three");
}
@Override
public void onStart() {
super.onStart();
Log.e("onStart", "three");
}
@Override
public void onResume() {
super.onResume();
Log.e("onResume", "three");
}
@Override
public void onPause() {
super.onPause();
Log.e("onPause", "three");
}
@Override
public void onStop() {
super.onStop();
Log.e("onStop", "three");
}
@Override
public void onDestroy() {
super.onDestroy();
Log.e("onDestroy", "three");
}
@Override
public void onDetach() {
super.onDetach();
Log.e("onDetach", "three");
}
@Override
public void onDestroyView() {
super.onDestroyView();
Log.e("onDestroyView", "three");
}
R.layout.fragment_one文件
<?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">
<EditText
android:id="@+id/et_fragment_one"
android:layout_width="match_parent"
android:text="myself"
android:layout_height="wrap_content" />
<Button
android:id="@+id/bn_fragment_one"
android:layout_width="wrap_content"
android:text="Button in one"
android:layout_height="wrap_content" />
</LinearLayout>
這個(gè)過程中所調(diào)用的回調(diào)方法湖员,Log打印如下:
在從FragmentOne跳轉(zhuǎn)到FragmentTwo的時(shí)候娘摔,代碼如下:
@Override
public void onClick(View v) {
FragmentTwo fTwo = new FragmentTwo();
FragmentManager fm = getFragmentManager();
FragmentTransaction tx = fm.beginTransaction();
tx.replace(R.id.id_content, fTwo, "TWO");
tx.addToBackStack(null);
tx.commit();
}
此時(shí)FragmentOne被替換【replace】晰筛,添加到回退棧中【addToBackStack】读第,onPause()怜瞒,onStop(),onDestroyView()被調(diào)用,但是onDestroy(),onDetach()就沒被調(diào)用惠窄,該Fragment實(shí)例被保存了下來漾橙。Log:
在從FragmentTwo跳轉(zhuǎn)到FragmentThree的時(shí)候
第一次返回,由于FragmentThree并沒有被保存到回退棧中脾歇,所以會(huì)調(diào)用到onDestroy(),onDetach()方法
第二次返回,從FragmentTwo返回到FragmentOne藕各,由于FragmentOne實(shí)例仍在焦除,所以沒有調(diào)用onCreate()
第三次返回膘魄,回到桌面
有沒有發(fā)現(xiàn)黔帕,在從FragmentTwo跳轉(zhuǎn)到FragmentThree的以及重新回到FragmentTwo的時(shí)候蹈丸,并沒有調(diào)用到FragmentTwo任何回調(diào)方法呐芥?是的沒有錯(cuò)就是這樣思瘟。
因?yàn)閺腇ragmentTwo到FragmentThree的代碼是這樣寫的:
@Override
public void onClick(View v) {
FragmentThree fThree = new FragmentThree();
FragmentManager fm = getFragmentManager();
FragmentTransaction tx = fm.beginTransaction();
tx.hide(this);
tx.add(R.id.id_content , fThree, "THREE");
//tx.replace(R.id.id_content, fThree, "THREE");
tx.addToBackStack(null);
tx.commit();
}
調(diào)用的是hide()滨攻,而非replace()
區(qū)別
hide()光绕,show():調(diào)用了Fragment創(chuàng)建及到前臺(tái)的幾個(gè)回調(diào)方法后畜份,該Fragment在后臺(tái)或者重新回到前臺(tái)的時(shí)候爆雹,不會(huì)調(diào)用到相關(guān)生命周期回調(diào)方法,所以視圖不會(huì)重繪
replace():相當(dāng)于remove和add的合體慧起,視圖重繪
總結(jié)
1蚓挤、replace屈尼,加回退棧 --- Fragment不銷毀,但是切換時(shí)會(huì)銷毀視圖和重新創(chuàng)建視圖
2、replace, 不加回退棧 --- Fragment銷毀
3演熟、hide芒粹、show --- Fragment不銷毀化漆,也不銷毀視圖钦奋。隱藏和顯示不走生命周期
四疙赠、結(jié)語
未完待續(xù)~畢竟Fragment還有很多要學(xué)的東西
然后還是那句老話圃阳,希望各位看官不吝賜教~蟹蟹啦
內(nèi)推信息
- 我們正在招募小伙伴捍岳,有興趣的小伙伴可以把簡(jiǎn)歷發(fā)到 app@talkmoney.cn睬隶,備注:來自簡(jiǎn)書社區(qū)
- 詳情可以戳這里--> 廣州蘆葦信息科技