Merge branch 'hotfix-v5.9.0-530-fragment_resume_crash' into 'release'

修复特殊场景下 fragment 恢复页面时的闪退

See merge request halo/android/assistant-android!249
This commit is contained in:
陈君陶
2022-05-18 15:13:09 +08:00

View File

@ -330,7 +330,9 @@ public abstract class BaseFragment<T> extends Fragment implements OnRequestCallB
// 为 fragment 附加 bundle (setArgument())
public BaseFragment with(Bundle bundle) {
this.setArguments(bundle);
if (!isStateSaved()) {
this.setArguments(bundle);
}
return this;
}