来自广播接收器的 Toast 消息

发布于 2024-12-12 03:41:15 字数 302 浏览 0 评论 0原文

我有一个广播接收器,我正在尝试显示一条来自它的 Toast 消息,这可能吗? 此代码不显示 toast,但会在 logcat 中打印日志消息。我正在做一些愚蠢的事情或者我的问题是什么?

@Override
public void onReceive(Context context, Intent intent) {
    Log.v("log", "this is shown");
    Toast.makeText(context, "this is not shown"     , Toast.LENGTH_LONG);
}

I have a broadcast receiver and I am trying to show a toast message from it, is this possible ?
This code doesn't show the toast but it print the log message in the logcat. Is there some idiotic thing I am doing or what is my problem ?

@Override
public void onReceive(Context context, Intent intent) {
    Log.v("log", "this is shown");
    Toast.makeText(context, "this is not shown"     , Toast.LENGTH_LONG);
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

黑凤梨 2024-12-19 03:41:16

调用 Toastshow() 方法。

Call the show() method for the Toast.

浅浅淡淡 2024-12-19 03:41:16

您忘记在 Toast 上调用 show() ..
虽然我不建议从 BroadcastReceivers 创建 toast..您可能会考虑使用通知

you forgot to call show() on the Toast..
although i would not recommend creating toasts from BroadcastReceivers.. you might consider using Notifications

表情可笑 2024-12-19 03:41:16

使用这个

Toast.makeText(context, "this is not shown",Toast.LENGTH_LONG).show();

Use this

Toast.makeText(context, "this is not shown",Toast.LENGTH_LONG).show();

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文