在android中,对fragment的操作都是通过fragmenttransaction来执行。而从fragment的结果来看,fragmenttransaction中对fragment的操作大致可以分为两类:
显示:add() replace() show() attach()
隐藏:remove() hide() detach()
对于每一组方法,虽然最后产生的效果类似,但方法背后带来的副作用以及对fragment的生命周期的影响都不尽相同。
add() vs. replace()
只有在fragment数量大于等于2的时候,调用add()还是replace()的区别才能体现出来。当通过add()连续两次添加fragment的时候,每个fragment生命周期中的onattach()-onresume()都会被各调用一次,而且两个fragment的view会被同时attach到containerview。
同样,退出activty时,每个fragment生命周期中的onpause()-ondetach()也会被各调用一次。
但当使用replace()来添加fragment的时候,第二次添加会导致第一个fragment被销毁,即执行第二个fragment的onattach()方法之前会先执行第一个fragment的onpause()-ondetach()方法,同时containerview会detach第一个fragment的view。
show() & hide() vs. attach() & detach()
调用show() & hide()方法时,fragment的生命周期方法并不会被执行,仅仅是fragment的view被显示或者隐藏。而且,尽管fragment的view被隐藏,但它在父布局中并未被detach,仍然是作为containerview的childview存在着。相比较下,attach() & detach()做的就更彻底一些。一旦一个fragment被detach(),它的onpause()-ondestroyview()周期都会被执行。
同时fragment的view也会被detach。在重新调用attach()后,oncreateview()-onresume()周期也会被再次执行。
remove()
其实看完上面的分析,remove()方法基本也就明白了。相对应add()方法执行onattach()-onresume()的生命周期,remove()就是完成剩下的onpause()-ondetach()周期。
错误
曾经在fragmenttransaction编写时遇到过以下错误:
the method replace(int, fragment) in the type fragmenttransaction is not applicable for the arguments (int, myfragment)
fragment newfragment =new myfragment();
fragmenttransaction.replace(r.layout.activity_main,newfragment ).commit();
提示错误:the method replace(int, fragment) in the type fragmenttransaction is not applicable for the arguments (int, myfragment)
原因找了好久!一直以为子类对象不能赋值给父类引用。这不科学啊!
代码时这样的:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
package com.example.testforfragment; import android.os.bundle; import android.app.activity; import android.app.fragmentmanager; import android.app.fragmenttransaction; import android.support.v4.app.fragment; import android.support.v4.app.fragment.*; import android.view.menu; public class mainactivity extends activity { @override protected void oncreate(bundle savedinstancestate) { super .oncreate(savedinstancestate); setcontentview(r.layout.activity_main); fragmentmanager fragmentmanager = getfragmentmanager(); fragmenttransaction fragmenttransaction = fragmentmanager.begintransaction(); fragment newfragment = new myfragment(); fragmenttransaction.replace(r.layout.activity_main,newfragment ).commit(); } @override public boolean oncreateoptionsmenu(menu menu) { // inflate the menu; this adds items to the action bar if it is present. getmenuinflater().inflate(r.menu.main, menu); return true ; } } |
所以关键就在于:
1
2
|
fragment newfragment = new myfragment(); fragmenttransaction.replace(r.layout.activity_main,newfragment ).commit(); |
修改后:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
package com.example.testforfragment; import android.os.bundle; import android.app.activity; import android.support.v4.app.fragment; import android.support.v4.app.fragmentactivity; import android.support.v4.app.fragmentmanager; import android.support.v4.app.fragmenttransaction; import android.view.menu; public class mainactivity extends fragmentactivity { @override protected void oncreate(bundle savedinstancestate) { super .oncreate(savedinstancestate); setcontentview(r.layout.activity_main); fragmentmanager fragmentmanager = getsupportfragmentmanager(); fragmenttransaction fragmenttransaction = fragmentmanager.begintransaction(); fragment newfragment = new myfragment(); fragmenttransaction.replace(r.layout.activity_main,newfragment ).commit(); } @override public boolean oncreateoptionsmenu(menu menu) { // inflate the menu; this adds items to the action bar if it is present. getmenuinflater().inflate(r.menu.main, menu); return true ; } } |