懒加载Fragment
只有创建并显示的时候才会调用onCreateViewLazy方法
懒加载的原理onCreateView的时候Fragment有可能没有显示出来。
但是调用到setUserVisibleHint(boolean isVisibleToUser),isVisibleToUser =true的时候就说明有显示出来
但是要考虑onCreateView和setUserVisibleHint的先后问题所以才有了下面的代码
注意:
《1》原先的Fragment的回调方法名字后面要加个Lazy,比如Fragment的onCreateView方法, 就写成onCreateViewLazy
《2》使用该LazyFragment会导致多一层布局深度
下面是LazyFragment
public class LazyFragment extends BaseFragment {
private boolean isInit = false;
private Bundle savedInstanceState;
public static final String INTENT_BOOLEAN_LAZYLOAD = "intent_boolean_lazyLoad";
private boolean isLazyLoad = true;
private FrameLayout layout;
@Deprecated
protected final void onCreateView(Bundle savedInstanceState) {
super.onCreateView(savedInstanceState);
Bundle bundle = getArguments();
if (bundle != null) {
isLazyLoad = bundle.getBoolean(INTENT_BOOLEAN_LAZYLOAD, isLazyLoad);
}
if (isLazyLoad) {
if (getUserVisibleHint() && !isInit) {
isInit = true;
this.savedInstanceState = savedInstanceState;
onCreateViewLazy(savedInstanceState);
} else {
layout = new FrameLayout(getApplicationContext());
layout.setLayoutParams(new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT));
super.setContentView(layout);
}
} else {
isInit = true;
onCreateViewLazy(savedInstanceState);
}
}
@Override
public void setUserVisibleHint(boolean isVisibleToUser) {
super.setUserVisibleHint(isVisibleToUser);
if (isVisibleToUser && !isInit && getContentView() != null) {
isInit = true;
onCreateViewLazy(savedInstanceState);
onResumeLazy();
}
if (isInit && getContentView() != null) {
if (isVisibleToUser) {
isStart = true;
onFragmentStartLazy();
} else {
isStart = false;
onFragmentStopLazy();
}
}
}
@Deprecated
@Override
public final void onStart() {
super.onStart();
if (isInit && !isStart && getUserVisibleHint()) {
isStart = true;
onFragmentStartLazy();
}
}
@Deprecated
@Override
public final void onStop() {
super.onStop();
if (isInit && isStart && getUserVisibleHint()) {
isStart = false;
onFragmentStopLazy();
}
}
private boolean isStart = false;
protected void onFragmentStartLazy() {
}
protected void onFragmentStopLazy() {
}
protected void onCreateViewLazy(Bundle savedInstanceState) {
}
protected void onResumeLazy() {
}
protected void onPauseLazy() {
}
protected void onDestroyViewLazy() {
}
@Override
public void setContentView(int layoutResID) {
if (isLazyLoad && getContentView() != null && getContentView().getParent() != null) {
layout.removeAllViews();
View view = inflater.inflate(layoutResID, layout, false);
layout.addView(view);
} else {
super.setContentView(layoutResID);
}
}
@Override
public void setContentView(View view) {
if (isLazyLoad && getContentView() != null && getContentView().getParent() != null) {
layout.removeAllViews();
layout.addView(view);
} else {
super.setContentView(view);
}
}
@Override
@Deprecated
public final void onResume() {
super.onResume();
if (isInit) {
onResumeLazy();
}
}
@Override
@Deprecated
public final void onPause() {
super.onPause();
if (isInit) {
onPauseLazy();
}
}
@Override
@Deprecated
public final void onDestroyView() {
super.onDestroyView();
if (isInit) {
onDestroyViewLazy();
}
isInit = false;
}
}
这是BaseFragment
public class BaseFragment extends Fragment {
protected LayoutInflater inflater;
private View contentView;
private Context context;
private ViewGroup container;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
context = getActivity().getApplicationContext();
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
this.inflater = inflater;
this.container = container;
onCreateView(savedInstanceState);
if (contentView == null)
return super.onCreateView(inflater, container, savedInstanceState);
return contentView;
}
protected void onCreateView(Bundle savedInstanceState) {
}
@Override
public void onDestroyView() {
super.onDestroyView();
contentView = null;
container = null;
inflater = null;
}
public Context getApplicationContext() {
return context;
}
public void setContentView(int layoutResID) {
setContentView((ViewGroup) inflater.inflate(layoutResID, container, false));
}
public void setContentView(View view) {
contentView = view;
}
public View getContentView() {
return contentView;
}
public View findViewById(int id) {
if (contentView != null)
return contentView.findViewById(id);
return null;
}
/**
* 在使用getChildFragmentManager的时候,还要在所有用到这个方法的Fragment中重写一下以下方法
*/
// http://stackoverflow.com/questions/15207305/getting-the-error-java-lang-illegalstateexception-activity-has-been-destroyed
@Override
public void onDetach() {
super.onDetach();
try {
Field childFragmentManager = Fragment.class.getDeclaredField("mChildFragmentManager");
childFragmentManager.setAccessible(true);
childFragmentManager.set(this, null);
} catch (NoSuchFieldException e) {
throw new RuntimeException(e);
} catch (IllegalAccessException e) {
throw new RuntimeException(e);
}
}
}
653

被折叠的 条评论
为什么被折叠?



