Return true if the fragment is currently visible to the user. This means
* it: (1) has been added, (2) has its view attached to the window, and
* (3) is not hidden.
if (this.isVisible()) {
if (isVisibleToUser && !mHasLoadedOnce) {
mHasLoadedOnce = true;
onLazyLoad();
}
}
super.setUserVisibleHint(isVisibleToUser);
}
@Override
public void onActivityCreated(Bundle savedInstanceState) {