Toast not shown in Honor 8XS #120

This commit is contained in:
EddyVerbruggen
2018-11-10 20:40:18 +01:00
parent 8869b81749
commit 440ea5bded
3 changed files with 6 additions and 5 deletions
+4 -3
View File
@@ -195,9 +195,10 @@ public class Toast extends CordovaPlugin {
_timer = new CountDownTimer(hideAfterMs, 2500) {
public void onTick(long millisUntilFinished) {
// see https://github.com/EddyVerbruggen/Toast-PhoneGap-Plugin/issues/116
if (!IS_AT_LEAST_PIE) {
toast.show();
}
// and https://github.com/EddyVerbruggen/Toast-PhoneGap-Plugin/issues/120
// if (!IS_AT_LEAST_PIE) {
// toast.show();
// }
}
public void onFinish() {
returnTapEvent("hide", msg, data, callbackContext);