在Android中,我实施了Google云端通知,该通知会在有消息到达时通知,但即使消息存在,它仍会保留,在安装应用程序后立即在通知栏中显示图标,是否有任何方法只显示通知时一旦用户点击它,消息就会到达并隐藏它?
这是我的代码:
private static void generateNotification(Context context, String message) {
int icon = R.drawable.ic_launcher;
long when = System.currentTimeMillis();
NotificationManager notificationManager = (NotificationManager)
context.getSystemService(Context.NOTIFICATION_SERVICE);
Notification notification = new Notification(icon, message, when);
String title = context.getString(R.string.app_name);
//Intent notificationIntent = new Intent(context, MainActivity.class); //Open Activity
// set intent so it does not start a new activity
Intent notificationIntent = new Intent(Intent.ACTION_VIEW);
notificationIntent.setData(Uri.parse("http://www.google.com")); //Open Link
notificationIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP |
Intent.FLAG_ACTIVITY_SINGLE_TOP);
PendingIntent intent =
PendingIntent.getActivity(context, 0, notificationIntent, 0);
notification.setLatestEventInfo(context, title, message, intent);
notification.flags |= Notification.FLAG_AUTO_CANCEL;
// Play default notification sound
notification.defaults |= Notification.DEFAULT_SOUND;
//notification.sound = Uri.parse("android.resource://" + context.getPackageName() + "your_sound_file_name.mp3");
// Vibrate if vibrate is enabled
notification.defaults |= Notification.DEFAULT_VIBRATE;
notificationManager.notify(0, notification);
}
答案 0 :(得分:1)
如果没有看到您在哪里接收消息以及您想要生成和取消通知的位置,很难分辨出您需要做什么来实现这一点,但我会试一试。
如果您为Android Connected App Engine project(通过GCM)加载示例项目,您会注意到GCMBaseIntentService收到了GCM数据。
此类有一个可以覆盖的方法,名为onMessage()
,只要收到GCM消息就会调用该方法。如果您使用此方法创建通知,则您的应用程序将仅在收到GCM消息时生成通知。
对于取消通知 - 您可以通过调用NotificationManager的cancel()
方法,传递要取消的通知的ID来实现。据推测,您有一些向用户显示消息的活动,这将是取消与特定消息相关的任何未完成通知的好地方。