标签: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