Android应用程序在通知接收时在某些设备上崩溃

时间:2013-07-31 07:45:15

标签: android android-intent google-cloud-messaging android-notifications

我使用以下代码在Android中创建通知。但它在某些设备上运行良好。但是当我检查三星Grand时,它在收到通知时崩溃了。 Android版本4.1.2(两个设备)

private static void generateNotification(Context context, String message) {

    long when = System.currentTimeMillis();
    NotificationManager notificationManager = (NotificationManager)
            context.getSystemService(Context.NOTIFICATION_SERVICE);
    Notification notification = new Notification(R.drawable.ic_launcher, message, when);
    String title = "From Application";
    Intent notificationIntent = new Intent(context, MainActivity.class);
    notificationIntent.putExtra("message", message);
    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;
    notification.defaults|= Notification.DEFAULT_LIGHTS;
    notification.defaults|= Notification.DEFAULT_VIBRATE;
    notification.flags |= Notification.FLAG_SHOW_LIGHTS;
    notificationManager.notify(0, notification);
}

有什么想法吗?我是Android新手..

提前致谢

0 个答案:

没有答案
相关问题