5

我有 GCM 通知实现。我知道客户端应用程序无论是处于前台、后台还是已终止状态都会收到通知。我想知道的是,当应用程序处于终止状态时,如何在收到通知时启动我的应用程序?

4

2 回答 2

5

在消息接收器中,我执行以下操作:

final Intent notificationIntent = new Intent(context, YourActivity.class);
notificationIntent.setAction(Intent.ACTION_MAIN);
notificationIntent.addCategory(Intent.CATEGORY_LAUNCHER);

此处将 YourActivity.class 替换为入口活动。这对我有用。

于 2013-01-22T12:40:32.237 回答
2

您可以使用 NotificationManager 开始您的活动。

尝试在onMessage()方法中使用以下代码,这是扩展 GCM 的GCMBaseIntentService类的类中的重写方法。

int icon = R.drawable.your_app_icon;
        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, YOUR_ACTIVITY.class);
        notificationIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
        // notificationIntent.putExtra("PostName", vPostText);
        // Log.i(TAG, "Sent Postid " + postid);

        // Util util = (Util) context.getApplicationContext();
        // util.setPostID(postid);
        // util.setNotify(true);
        // util.setUserNAME(vPortCode);
        // util.setPostNAME(vPostText);
        // util.setmEDIA(vMedia);
        // util.setmEDIATHHUMB(vMediaThumb);
        // util.setmEDIATYPE(vMediaType);
        // util.setAirportName(vAirportName);

        notificationIntent.putExtra("Set_image", true);
        notificationIntent.putExtra("Notify", true);

        // set intent so it does not start a new activity
        // notificationIntent.setFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);
        // notificationIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        // notificationIntent.setFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
        // | Intent.FLAG_ACTIVITY_SINGLE_TOP);
        PendingIntent intent = PendingIntent.getActivity(context,
                (int) System.nanoTime(), notificationIntent, 0);

        notification.setLatestEventInfo(context, title, message, intent);
        notification.defaults |= Notification.DEFAULT_SOUND;
        notification.flags |= Notification.FLAG_AUTO_CANCEL;
        notificationManager.notify((int) System.nanoTime(), notification);
于 2012-11-28T09:46:23.843 回答