Prevent crash

This commit is contained in:
M66B
2021-10-04 07:37:45 +02:00
parent 50af1c5fb5
commit b09a90b247
6 changed files with 16 additions and 2 deletions

View File

@@ -222,6 +222,16 @@ public class FixedEditText extends AppCompatEditText {
}
}
@Override
public boolean onKeyUp(int keyCode, KeyEvent event) {
try {
return super.onKeyUp(keyCode, event);
} catch (Throwable ex) {
Log.w(ex);
return true;
}
}
@Override
public boolean performClick() {
try {