0

ユーザーが通知UIで通知をクリックしたときに、別のアクティビティにリダイレクトする方法はありますか?

例えば

Google カレンダーでイベントを作成します。通知がある場合、ユーザーがそれをクリックすると、Google カレンダーに直接移動するのではなく、アクティビティが開きます。

4

1 に答える 1

0

これを試して :

private void generateNotification(Context context, String message,
long when, String query) {
int icon = R.drawable.icon;
 long when = System.currentTimeMillis();
String appname = context.getResources().getString(R.string.app_name);
NotificationManager notificationManager = (NotificationManager) context
    .getSystemService(Context.NOTIFICATION_SERVICE);
int currentapiVersion = android.os.Build.VERSION.SDK_INT;
Notification notification;

Intent intent = new Intent(context, MainActivity.class);
PendingIntent contentIntent = PendingIntent.getActivity(context, 0,
    intent, 0);

if (currentapiVersion < android.os.Build.VERSION_CODES.HONEYCOMB) {
    notification = new Notification(icon, message, when);
    notification.setLatestEventInfo(context, appname, message,
            contentIntent);
    notification.flags = Notification.FLAG_AUTO_CANCEL;
    notificationManager.notify((int) when, notification);

} else {
    NotificationCompat.Builder builder = new NotificationCompat.Builder(
            context);
    notification = builder.setContentIntent(contentIntent)
            .setSmallIcon(icon).setTicker(appname).setWhen(when)
            .setAutoCancel(true).setContentTitle(appname)
            .setContentText(message).build();

    notificationManager.notify((int) when, notification);

}

お役に立てれば。

于 2013-10-28T04:24:37.293 に答える