Prevent crash

This commit is contained in:
M66B
2021-09-27 09:48:52 +02:00
parent bd3e7cf5dd
commit 7b917ed5a6
2 changed files with 44 additions and 0 deletions

View File

@@ -222,6 +222,16 @@ public class FixedEditText extends AppCompatEditText {
}
}
@Override
public boolean performClick() {
try {
return super.performClick();
} catch (Throwable ex) {
Log.w(ex);
return false;
}
}
@Override
public boolean performLongClick() {
try {