0

Androidでは、メッセージが到着したときに通知するGoogle Cloud Notificationを実装しましたが、メッセージが表示されても表示され、アプリケーションのインストール直後に通知バーにアイコンが表示されます。メッセージが到着したときにのみ通知を表示する方法はありますか。ユーザーがクリックしたら非表示にしますか?

これが私のコードです:

    private static void generateNotification(Context context, String message) {
    int icon = R.drawable.ic_launcher;
    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, MainActivity.class);           //Open Activity
    // set intent so it does not start a new activity

    Intent notificationIntent = new Intent(Intent.ACTION_VIEW);

    notificationIntent.setData(Uri.parse("http://www.google.com"));                  //Open Link

    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;

    // Play default notification sound
    notification.defaults |= Notification.DEFAULT_SOUND;

    //notification.sound = Uri.parse("android.resource://" + context.getPackageName() + "your_sound_file_name.mp3");

    // Vibrate if vibrate is enabled
    notification.defaults |= Notification.DEFAULT_VIBRATE;
    notificationManager.notify(0, notification);      

}
4

1 に答える 1

1

メッセージを受信して​​いる場所と、通知を生成およびキャンセルする場所がわからないと、これを実装するために何をする必要があるかを識別するのは非常に困難ですが、試してみます。

Android Connected App Engineプロジェクトのサンプルプロジェクトを(GCM経由で)ロードすると、GCMデータがGCMBaseIntentServiceで受信されていることがわかります。onMessage()このクラスには、GCMメッセージを受信するたびに呼び出されるcalledをオーバーライドできるメソッドがあります。この方法で通知を作成すると、アプリケーションはGCMメッセージを受信したときにのみ通知を生成します。

通知のキャンセルについては、NotificationManagerのcancel()メソッドを呼び出して、キャンセルする通知のIDを渡すことでキャンセルできます。おそらく、ユーザーにメッセージを表示するある種のアクティビティがあり、これは特定のメッセージに関連する未処理の通知をキャンセルするのに適した場所です。

于 2013-03-05T15:18:27.237 に答える