标签:android style 使用 ar sp 问题 on c r
解决fragment重复创建目前用到有两个方法:
1、fragment同viewpager一起使用:
vp.setOffscreenPageLimit(3);//设置缓存页面的个数
2、fragment单独使用:
在onCreateView()方法中加入:
if (null == view) {
view = inflater.inflate(R.layout.XXX, null);
}
ViewGroup parent = (ViewGroup)view.getParent();
if (parent != null) {
parent.removeView(view);
}
return view;
还其他方法:
使用fragment的进程管理,不过感觉比较麻烦。
标签:android style 使用 ar sp 问题 on c r
原文地址:http://blog.csdn.net/xulei881/article/details/39527885