继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

动态使用Fragment

慕码人8268494
关注TA
已关注
手记 2
粉丝 0
获赞 0
        // 获取FragmentManager对象
        FragmentManager manager = getSupportFragmentManager();
        // 获取FragmentManager事务对象  
        // 事务:事务具有一致性,即,一般情况下,有十行代码依次执行,到第九行代码时出现错误,则前八行代码已执行并实现效果,如果这十行代码放入
        // 一个事务中,如果其中任意一行代码出现错误,则所有代码均不会执行或有实现效果
        FragmentTransaction transaction = manager.beginTransaction();
        // 调用FragmentTransaction对象的方法,动态添加Fragment对象到指定容器
        Title2Fragment titleFragment = new Title2Fragment();
        Content2Fragment contentFragment = new Content2Fragment();
        transaction.add(R.id.fl_container_title, titleFragment);
//        transaction.add(R.id.fl_container_title, titleFragment);
//        transaction.hide(titleFragment);
        transaction.add(R.id.fl_container_content, contentFragment);
        // 提交事务
        transaction.commit();

        /**
         * Fragment对象的add和replace的区别
         * 区别在于:是否先清空容器再添加新的Fragment对象。
         * add方法不会清空容器,直接在原Fragment对象上添加,所以常配合hide或remove一起使用,否则会出现Fragment重影。
         * remove方法先清空容器里的原来的Fragment对象,一般单独使用。
         *
         * 注意:
         * 1,在add时,同一个对象不允许重复添加,否则报错如下:
         *  Caused by: java.lang.IllegalStateException: Fragment already added: Title2Fragment{f90c487 #0 id=0x7f07003d}
         * 2,add和replace都会走一遍Fragment的生命周期。一般是使用add配合hide和show使用,减少内存消耗。
         */


打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP