FragmentTabHost切换Fragment时避免UI重新加载
Posted changhaiSmile
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了FragmentTabHost切换Fragment时避免UI重新加载相关的知识,希望对你有一定的参考价值。
FragmentTabHost切换Fragment时避免UI重新加载
每次FragmentTabHost切换fragment时会调用onCreateView()重绘UI。
解决方法,在fragment onCreateView 里缓存View:
private View rootView;// 缓存Fragment view
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState)
Log.i(TAG, "onCreateView");
if (rootView == null)
rootView = inflater.inflate(R.layout.fragment_1, null);
// 缓存的rootView需要判断是否已经被加过parent,如果有parent需要从parent删除,要不然会发生这个rootview已经有parent的错误。
ViewGroup parent = (ViewGroup) rootView.getParent();
if (parent != null)
parent.removeView(rootView);
return rootView;
以上是关于FragmentTabHost切换Fragment时避免UI重新加载的主要内容,如果未能解决你的问题,请参考以下文章
Android典型界面设计——FragmentTabHost+Fragment实现底部tab切换
用FragmentTabHost管理Fragment,实现页面切换
FragmentTabHost+Fragment搭建应用主框架