遇到问题:将4个Fragment中的数据保存到一个Bundle中,在第一个页面从不可见进入可见状态时,从Bundle中成功获取到数据并执行settext,问题来了。从第二个页面返回页面一时 一切正常,但是从页面三、四再返回页面一,数据获取到了、settext语句也正常执行,但是没有任何显示。
/**
* 重新进入本页面重新加载数据以供修改
*
* @param isVisibleToUser
*/
@Override
public void setUserVisibleHint(boolean isVisibleToUser) {
super.setUserVisibleHint(isVisibleToUser);
if (isVisibleToUser && intoFlag > 1) {
Bundle bundle = getAddInfo();
infotype_frag_baseinfo.setRightTvv(bundle.getString(Constant.TYPEID));// 信息类型
DebugLogUtil.getInstance().Debug(getSimpleClassName() + "可见");
} else {
DebugLogUtil.getInstance().Debug(getSimpleClassName() + "不可见");
intoFlag++;
}
}
PHP中文网2017-04-17 18:00:45
Actually, this depends on which one you useAdapter
recommendedFragment
保存在内存中,少量个数的Fragmnet
Fragment
The number of preloads can be set via setOffscreenPageLimit(int count)
Fragment
的预加载的个数可以通过setOffscreenPageLimit(int count)
高洛峰2017-04-17 18:00:45
Pass in Viewpager.setOffscreenPageLimit(int count); to pass in the number of Fragments that need to cache the view to achieve the need to cache all Fragment data. Illustration codes are no longer used.