我需要一个弹出对话框,当我收到来自不同线程的消息时,该对话框不应该依赖于活动,即应该在屏幕焦点位置显示对话框.
可以做吗因为每个Activity都处理了对话框,所以我想到了使用一个服务,但是再次添加一个线程,我想避免这种情况.
任何其他选项可用?
解决方法
如果您尝试在您的活动不是用户手机上的重点活动时询问如何显示对话框,请尝试使用“通知”.通过不同的应用程序弹出对话框可能会在用户执行其他操作时中断用户.从
Android UI guidelines:
Use the notification system — don’t
use dialog Boxes in place of
notificationsIf 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