2

每当我收到推送通知并且我的应用程序可见(onStart() / onStop() 对)时,我都会尝试从 GCMIntentService 类向用户显示一个对话框。(我还没有切换到下一个 GCM,实际上我做了但是我遇到了问题,所以我切换回了旧的)

protected void onMessage(Context context, Intent intent)
{
    AlertDialog.Builder builder = new AlertDialog.Builder(context); //issue here

builder.setMessage("You have a notification").setTitle("Notification");
builder.setPositiveButton("dismiss",
new DialogInterface.OnClickListener()
{
public void onClick(DialogInterface dialog, int id)
{
Intent intent = new Intent(Intent.ACTION_MAIN);
                        intent.addCategory(Intent.CATEGORY_HOME);
                        intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
}
});

AlertDialog dialog = builder.create();
dialog.show();
 } 

我得到的错误是

android.view.WindowManager$BadTokenException: 无法添加窗口 -- 令牌 null 不适用于应用程序

我知道这是一个上下文错误,并且在谷歌的文档等中写错了......但是每当我收到通知时显示对​​话框的方式是什么?

4

1 回答 1

1

不要使用对话框,而是创建一个活动并将其主题设置为Theme.dialog或其任何子项,然后从该onMessage方法启动活动。

这样,您的活动将达到对话的目的,问题就会消失

于 2013-10-28T14:20:19.893 回答