Gesture inset ignored what?!

Android space is Android space, app space is app space!
Android problems should be fixed in Android, not in apps!
This commit is contained in:
M66B
2020-07-06 19:02:01 +02:00
parent a24400c949
commit cbd561e793
16 changed files with 140 additions and 75 deletions

View File

@@ -520,7 +520,8 @@ public class FragmentPop extends FragmentBase {
@Override
protected void onException(Bundle args, Throwable ex) {
if (ex instanceof IllegalArgumentException)
Snackbar.make(view, ex.getMessage(), Snackbar.LENGTH_LONG).show();
Snackbar.make(view, ex.getMessage(), Snackbar.LENGTH_LONG)
.setGestureInsetBottomIgnored(true).show();
else {
tvError.setText(Log.formatThrowable(ex, false));
grpError.setVisibility(View.VISIBLE);