【发布时间】:2014-10-14 11:42:24
【问题描述】:
我的推送通知有问题,当我点击通知时,没有新的意图开始。 请帮我解决这个问题, 提前致谢。
private static void generateNotification(Context context,String htitle, 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);
String title=htitle;
Intent notificationIntent = new Intent(context, MainActivity.class);
notificationIntent.putExtra("head",title);
notificationIntent.putExtra("desc",message);
// set intent so it does not start a new activity
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);
}
【问题讨论】:
标签: android push-notification google-cloud-messaging