码迷,mamicode.com
首页 > 其他好文 > 详细

frament(2、动态创建)

时间:2015-03-22 10:37:52      阅读:271      评论:0      收藏:0      [点我收藏+]

标签:

frament可以由自动添加,主要代码如下:

FragmentManager fm = getSupportFragmentManager();  
FragmentTransaction transaction = fm.beginTransaction();  
mDemo = new DemoFragment();
transaction.replace(R.id.fragment_content, mDemo);
transaction.commit();

同时可以对每次fragment的操作增加回退栈,增加后back键的操作将首先处理fragment的回退,如下:

FragmentManager fm = getSupportFragmentManager();  
FragmentTransaction transaction = fm.beginTransaction();  
mDemo = new DemoFragment();
transaction.replace(R.id.fragment_content, mDemo);//replace = remove + add
transaction.addToBackStack(null);
transaction.commit();

 

frament(2、动态创建)

标签:

原文地址:http://www.cnblogs.com/Fredric-2013/p/4356734.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!