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

FragmentTabHost切换Fragment时避免重复加载UI,导致切换后重绘页面的问题解决

时间:2014-11-21 11:59:40      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:style   blog   ar   color   os   使用   sp   strong   on   

项目中用到了FragmentTabHost,痛苦的是切换Fragment时页面总是重新加载无法保证是切换前的状态,现在得以解决!

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

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

 

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,Bundle savedInstanceState) {

if (view == null) {
    view = inflater.inflate(R.layout.fragment_tableindex, container, false);
}
// 缓存的viewiew需要判断是否已经被加过parent,
// 如果有parent需要从parent删除,要不然会发生这个view已经有parent的错误。
ViewGroup parent = (ViewGroup) view.getParent();
if (parent != null) {
    parent.removeView(view);
}

return view;
}

 

FragmentTabHost切换Fragment时避免重复加载UI,导致切换后重绘页面的问题解决

标签:style   blog   ar   color   os   使用   sp   strong   on   

原文地址:http://www.cnblogs.com/heiyl/p/4112257.html

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