首页 > 其他 > 详细

fragment 切换

时间:2015-05-18 16:03:52      阅读:242      评论:0      收藏:0      [点我收藏+]

1.Fragment的添加方式

FragmentTransaction ft = getFragmentManager().beginTransaction();
ft.hide
ft.show
ft.add
ft.replace
ft.hide---ft.show
a.let the old fragment to hide, but not delete in memory, so it will quick showing after calling show
b.when calling ft.replace it will delete all old memory, and it will onCreateView for a new time when show this.
c.ft.add it using with ft-hide/ft.show, not delete fragment in memory.
d.ft.remove sync using with ft.add. just remove what you want .

fragment 切换

原文:http://www.cnblogs.com/deman/p/4511891.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!