Add activity finishing check before calling onBackPressed. May fix IllegalStateException: Can not perform this action after onSaveInstanceState
This commit is contained in:
parent
28dab3cf0f
commit
4ffab14ff3
@ -208,10 +208,14 @@ public class MainActivity extends BaseLanguageActivity implements FragmentManage
|
|||||||
public void onBackPressed() {
|
public void onBackPressed() {
|
||||||
if (isTaskRoot() && isBackStackEmpty) {
|
if (isTaskRoot() && isBackStackEmpty) {
|
||||||
finishAfterTransition();
|
finishAfterTransition();
|
||||||
} else {
|
return;
|
||||||
|
}
|
||||||
|
if (!isFinishing()) {
|
||||||
try {
|
try {
|
||||||
super.onBackPressed();
|
super.onBackPressed();
|
||||||
} catch (Exception ignored) {}
|
} catch (Exception e) {
|
||||||
|
Log.e(TAG, "onBackPressed: ", e);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -553,11 +557,10 @@ public class MainActivity extends BaseLanguageActivity implements FragmentManage
|
|||||||
.build();
|
.build();
|
||||||
fragment.setOnShowListener(dialog -> alertDialog.dismiss());
|
fragment.setOnShowListener(dialog -> alertDialog.dismiss());
|
||||||
fragment.show(getSupportFragmentManager(), "post_view");
|
fragment.show(getSupportFragmentManager(), "post_view");
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
else {
|
Toast.makeText(getApplicationContext(), R.string.post_not_found, Toast.LENGTH_SHORT).show();
|
||||||
Toast.makeText(getApplicationContext(), R.string.post_not_found, Toast.LENGTH_SHORT).show();
|
alertDialog.dismiss();
|
||||||
alertDialog.dismiss();
|
|
||||||
}
|
|
||||||
}).execute();
|
}).execute();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user