我的Android应用程序出了问题。它通过Google Cloud Messaging接收消息,并在通知栏中显示通知。我想通过通知传输一些数据。此数据来自Google Cloud Messaging,应该附加到通知中。
这是我显示通知的代码:
private void setNotification(String strTitle, String strMessage, int intPageId, int intCategorieId)
{
notificationManager = (NotificationManager) this.getSystemService(Context.NOTIFICATION_SERVICE);
Intent intentOpen = new Intent(this, NotificationClick.class);
intentOpen.putExtra("pageId", Integer.toString(intPageId));
intentOpen.putExtra("categorieId", Integer.toString(intCategorieId));
intentOpen.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK);
PendingIntent contentIntent = PendingIntent.getActivity(this, 0, intentOpen, 0);
NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this)
.setSmallIcon(R.drawable.launcher_icon)
.setTicker(strTitle)
.setContentTitle(strTitle)
.setStyle(new NotificationCompat.BigTextStyle().bigText(strMessage))
.setContentText(strMessage);
notificationBuilder.setContentIntent(contentIntent);
notificationBuilder.setDefaults(Notification.DEFAULT_ALL);
notificationManager.notify(intCategorieId, notificationBuilder.build());
}
我的代码在另一个Activity中获取Varibles“intPageId”和“intCategorieId”(通过点击Notification打开),这是:
Bundle intentExtras = new Bundle();
intentExtras = getIntent().getExtras();
Toast.makeText(this, "Page To Open: " + intentExtras.getString("pageId"), Toast.LENGTH_LONG).show();
Toast.makeText(this, "Page To Open: " + intentExtras.getString("kategorieId"), Toast.LENGTH_LONG).show();
但是在“Toast”中,两个消息都显示为“null”,或者是第一次传递的值,单击Message。
例如: 我第一次发送:intPageId = 1。 Toast说:“打开页面:1”。
第二次发送:intPageId = 2。 Toast说:“打开页面:1”。
我很困惑,希望有人可以帮助我。
(对不起拼写和语法错误)
答案 0 :(得分:2)
第一种方法:
而不是下线:
PendingIntent contentIntent = PendingIntent.getActivity(this, 0, intentOpen, 0);
将其更改为:
PendingIntent contentIntent = PendingIntent.getActivity(this, 0, intentOpen, PendingIntent.FLAG_UPDATE_CURRENT);
第二种方法:
int iUniqueId = (int) (System.currentTimeMillis() & 0xfffffff);
PendingIntent contentIntent = PendingIntent.getActivity(getApplicationContext(),iUniqueId, intentForNotification, 0);