()
| 96 | } |
| 97 | |
| 98 | @Override |
| 99 | public void show() { |
| 100 | // https://developer.android.com/preview/features/toasts |
| 101 | if (!Helper.isUiThread()) |
| 102 | Log.e("Toast from background"); |
| 103 | |
| 104 | // https://stackoverflow.com/questions/56017928/toast-not-showing-in-android-q |
| 105 | super.show(); |
| 106 | } |
| 107 | } |
no test coverage detected