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

FragmentTabHost切换Fragment时避免重复加载UI

时间:2014-05-09 19:11:58      阅读:255      评论:0      收藏:0      [点我收藏+]

标签:style   blog   class   code   tar   ext   

使用FragmentTabHost时,Fragment之间切换时每次都会调用onCreateView方法,导致每次Fragment的布局都重绘,无法保持Fragment原有状态。

        解决办法:在Fragment onCreateView方法中缓存View

 

bubuko.com,布布扣
 1     private View rootView;//缓存Fragment view
 2     
 3     @Override
 4     public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
 5         if(rootView==null){
 6             rootView=inflater.inflate(R.layout.tab_fragment, null);
 7         }
 8  //缓存的rootView需要判断是否已经被加过parent, 如果有parent需要从parent删除,要不然会发生这个rootview已经有parent的错误。
 9         ViewGroup parent = (ViewGroup) rootView.getParent();
10         if (parent != null) {
11             parent.removeView(rootView);
12         } 
13         return rootView;
14     }
View Code

 

 

 

FragmentTabHost切换Fragment时避免重复加载UI,布布扣,bubuko.com

FragmentTabHost切换Fragment时避免重复加载UI

标签:style   blog   class   code   tar   ext   

原文地址:http://www.cnblogs.com/Jack-Lu/p/3708170.html

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