-
-
Notifications
You must be signed in to change notification settings - Fork 10.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
1.19.0以上版本ToastUtils导致应用闪退 #660
Comments
用最新版本呢?最新版本已经修复的 |
就是升级到1.20.4发现的这个问题,然后回退到1.19.0就没有问题了 |
Toast toast = Toast.makeText(context, "", duration);
toast.setText(text);
toast.show(); 你在你手机上测试下这段代码,如果会崩那就是这代码的问题 |
单独测试了代码是没有问题的,用Demo测试也不会有问题,但是项目里的升级到1.20.4版本就会出现问题。 |
这是我从小米崩溃日志复制的,运行Demo是不会出错的,我也不知道是不是项目的问题,是不是跟其他库冲突了。 backtrace: |
试试 1.21.0 版本 |
还是会出现上面的错误,1.19.1版本不会 |
你看我源码里也就是这样实现的啊 Toast toast = Toast.makeText(context, "", duration);
toast.setText(text);
toast.show(); 你测试了没有问题,那到底咋回事,我 demo 也没问题,那你新建个项目呢,或者说你这个项目最终打进去的版本不对? |
我再试试 |
我发现1.19.0以上可能是跟我项目里面导入的QMUI不兼容,估计是这个原因,不使用ToastUtils就不会。 |
机型:小米5
Android版本:魔趣8.1
调用ToastUtils.showShort(),第一次弹出成功,第二次弹出应用崩溃。
IDE看到的错误为:libc: Fatal signal 6 (SIGABRT), code -6
使用1.19.0版本不会出现这个错误。
The text was updated successfully, but these errors were encountered: