Avoid reader crash
(cherry picked from commit 544387d1a08655efcc228375aeb275f9e4492c34)
This commit is contained in:
parent
afb6ca1b5c
commit
a6210baf70
1 changed files with 2 additions and 0 deletions
|
|
@ -84,6 +84,8 @@ open class Pager(
|
|||
override fun onTouchEvent(ev: MotionEvent): Boolean {
|
||||
return try {
|
||||
super.onTouchEvent(ev)
|
||||
} catch (e: NullPointerException) {
|
||||
false
|
||||
} catch (e: IndexOutOfBoundsException) {
|
||||
false
|
||||
} catch (e: IllegalArgumentException) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue