每当我收到推送通知并且我的应用程序可见(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 不适用于应用程序
我知道这是一个上下文错误,并且在谷歌的文档等中写错了......但是每当我收到通知时显示对话框的方式是什么?