在三星S4中,当我们点击通知时,应用程序无法打开

时间:2013-12-03 05:55:39

标签: android google-cloud-messaging

在我的应用程序中,我向设备发送GCM通知,当我们点击通知时,它不会在Samsung S4中打开应用程序。请任何人帮助我。

代码:

    NotificationManager notificationManager = (NotificationManager) context
            .getSystemService(Context.NOTIFICATION_SERVICE);
    Notification notification = new Notification(icon, message, when);

    Intent notificationIntent = new Intent(context, Main.class);

    notificationIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP
            | Intent.FLAG_ACTIVITY_SINGLE_TOP);

    PendingIntent intent = PendingIntent.getActivity(context, 0,
            notificationIntent, 0);
    String title = context.getString(R.string.app_name);
    notification.setLatestEventInfo(context, title, message, intent);
    notification.flags |= Notification.FLAG_AUTO_CANCEL;

    notification.defaults |= Notification.DEFAULT_SOUND;

    notification.defaults |= Notification.DEFAULT_VIBRATE;
    notificationManager.notify(0111, notification);

2 个答案:

答案 0 :(得分:6)

在AndroidManifest中为intent指定的Activity添加android:exported="true"。 此问题取决于Android版本而非三星.......

答案 1 :(得分:0)

在清单

中添加android:exported =“true”
<activity
            android:name=".G_chat"
            android:label="G_chat"
            android:exported="true">
</activity>

G_chat是将在通知点击时打开的活动。