java – 从后台线程的PopUp对话框Android

前端之家收集整理的这篇文章主要介绍了java – 从后台线程的PopUp对话框Android前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要一个弹出对话框,当我收到来自不同线程的消息时,该对话框不应该依赖于活动,即应该在屏幕焦点位置显示对话框.

可以做吗因为每个Activity都处理了对话框,所以我想到了使用一个服务,但是再次添加一个线程,我想避免这种情况.

任何其他选项可用?

解决方法

如果您尝试在您的活动不是用户手机上的重点活动时询问如何显示对话框,请尝试使用“通知”.通过不同的应用程序弹出对话框可能会在用户执行其他操作时中断用户.从 Android UI guidelines

Use the notification system — don’t
use dialog Boxes in place of
notifications

If your background service needs to
notify a user,use the standard
notification system — don’t use a
dialog or toast to notify them. A
dialog or toast would immediately take
focus and interrupt the user,taking
focus away from what they were doing:
the user could be in the middle of
typing text the moment the dialog
appears and could accidentally act on
the dialog. Users are used to dealing
with notifications and can pull down
the notification shade at their
convenience to respond to your
message.

创建通知的指南如下:http://developer.android.com/guide/topics/ui/notifiers/notifications.html

原文链接:https://www.f2er.com/java/122693.html

猜你在找的Java相关文章