0

押す 3 つのボタンのいずれかに応じて Android 通知を表示するシンプルなアプリがあります。

犬、猫、またはネズミ

犬を押すと、「犬」という通知が表示されます。猫を押すと、「猫」という通知が表示されます。マウスを押すと、「マウス」という通知が表示されます。

通知をクリックすると、メインのアクティビティに移動します (3 つのボタンが再び表示されます)。クリックされた通知を読み取り、通知のテキストをtextViewとして設定する別のアクティビティに移動したいと思います。

これを行う方法についてのアイデアはありますか?

4

1 に答える 1

2
NotificationCompat.Builder mBuilder =
        new NotificationCompat.Builder(this)
        .setSmallIcon(R.drawable.notification_icon)
        .setContentTitle("My notification")
        .setContentText("Hello World!");
// Creates an explicit intent for an Activity in your app
Intent resultIntent = new Intent(this, ResultActivity.class);

// The stack builder object will contain an artificial back stack for the
// started Activity.
// This ensures that navigating backward from the Activity leads out of
// your application to the Home screen.
TaskStackBuilder stackBuilder = TaskStackBuilder.create(this);
// Adds the back stack for the Intent (but not the Intent itself)
stackBuilder.addParentStack(ResultActivity.class);
// Adds the Intent that starts the Activity to the top of the stack
stackBuilder.addNextIntent(resultIntent);
PendingIntent resultPendingIntent =
        stackBuilder.getPendingIntent(
            0,
            PendingIntent.FLAG_UPDATE_CURRENT
        );
mBuilder.setContentIntent(resultPendingIntent);
NotificationManager mNotificationManager =
    (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
// mId allows you to update the notification later on.
mNotificationManager.notify(mId, mBuilder.build());

ソース: http://developer.android.com/guide/topics/ui/notifiers/notifications.html#Actions

于 2012-10-16T01:02:36.750 に答える