web-dev-qa-db-ja.com

Notification.Builderの正確な使用方法

Noficitations(notification.setLatestEventInfo())に非推奨のメソッドを使用していることがわかりました

Notification.Builderを使用すると書かれています。

  • 使用方法

新しいインスタンスを作成しようとすると、次のように表示されます。

Notification.Builder cannot be resolved to a type
98
Saariko

This はAPI 11に含まれているため、3.0より前のバージョンで開発している場合は、引き続き古いAPIを使用する必要があります。

Update:NotificationCompat.Builderクラスがサポートパッケージに追加されたため、これを使用してAPIレベルv4以上をサポートできます。

http://developer.Android.com/reference/Android/support/v4/app/NotificationCompat.Builder.html

86
Femi

Notification.Builder API 11 または NotificationCompat.Builder API 1

これは使用例です。

Intent notificationIntent = new Intent(ctx, YourClass.class);
PendingIntent contentIntent = PendingIntent.getActivity(ctx,
        YOUR_PI_REQ_CODE, notificationIntent,
        PendingIntent.FLAG_CANCEL_CURRENT);

NotificationManager nm = (NotificationManager) ctx
        .getSystemService(Context.NOTIFICATION_SERVICE);

Resources res = ctx.getResources();
Notification.Builder builder = new Notification.Builder(ctx);

builder.setContentIntent(contentIntent)
            .setSmallIcon(R.drawable.some_img)
            .setLargeIcon(BitmapFactory.decodeResource(res, R.drawable.some_big_img))
            .setTicker(res.getString(R.string.your_ticker))
            .setWhen(System.currentTimeMillis())
            .setAutoCancel(true)
            .setContentTitle(res.getString(R.string.your_notif_title))
            .setContentText(res.getString(R.string.your_notif_text));
Notification n = builder.build();

nm.notify(YOUR_NOTIF_ID, n);
151
Rabi

ここで選択した答えに加えて、 Source TricksNotificationCompat.Builderクラスのサンプルコードがあります。

// Add app running notification  

    private void addNotification() {



    NotificationCompat.Builder builder =  
            new NotificationCompat.Builder(this)  
            .setSmallIcon(R.drawable.ic_launcher)  
            .setContentTitle("Notifications Example")  
            .setContentText("This is a test notification");  

    Intent notificationIntent = new Intent(this, MainActivity.class);  
    PendingIntent contentIntent = PendingIntent.getActivity(this, 0, notificationIntent,   
            PendingIntent.FLAG_UPDATE_CURRENT);  
    builder.setContentIntent(contentIntent);  

    // Add as notification  
    NotificationManager manager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);  
    manager.notify(FM_NOTIFICATION_ID, builder.build());  
}  

// Remove notification  
private void removeNotification() {  
    NotificationManager manager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);  
    manager.cancel(FM_NOTIFICATION_ID);  
}  
70
ANemati

Notification Builderは、Android AP​​Iレベル11以降(Android 3.0以降)専用です。

したがって、ハニカムタブレットをターゲットにしない場合、通知ビルダーを使用するのではなく、次のような古い通知作成方法に従ってください example

4
Ye Myat Min

Android-Nの更新(2016年3月)

詳細については、 通知の更新 リンクをご覧ください。

  • 直接返信
  • バンドルされた通知
  • カスタムビュー

Android Nでは、同様の通知をバンドルして単一の通知として表示することもできます。これを可能にするために、Android Nは既存のNotificationCompat.Builder.setGroup()メソッドを使用します。ユーザーは各通知を展開し、通知シェードから個別に各通知に対して返信や却下などのアクションを実行できます。

これは、NotificationCompatを使用して通知を送信する単純なサービスを示す既存のサンプルです。ユーザーからの未読の会話はそれぞれ、個別の通知として送信されます。

このサンプルは、Android Nで利用可能な新しい通知機能を利用するために更新されました。

サンプルコード

3
Amit Vaghela

通知の作成で問題が発生していました(Android 4.0+でのみ開発中)。 このリンク は、私が間違っていたことを正確に示し、次のように述べています。

Required notification contents

A Notification object must contain the following:

A small icon, set by setSmallIcon()
A title, set by setContentTitle()
Detail text, set by setContentText()

基本的に、これらの1つが欠けていました。これでのトラブルシューティングの基礎として、少なくともこれらすべてを持っていることを確認してください。うまくいけば、これが他の人の頭痛の種を救うでしょう。

2
Nlinscott

利用した

Intent intent = new Intent(this, MainActivity.class);
        intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
        PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent,
                PendingIntent.FLAG_ONE_SHOT);

        Uri defaultSoundUri= RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
        NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this)
                .setSmallIcon(R.mipmap.ic_launcher)
                .setContentTitle("Firebase Push Notification")
                .setContentText(messageBody)
                .setAutoCancel(true)
                .setSound(defaultSoundUri)
                .setContentIntent(pendingIntent);

        NotificationManager notificationManager =
                (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);

        notificationManager.notify(0, notificationBuilder.build());
1
Nilesh Panchal

このコードを使用できるAPI 8でも機能します。

 Notification n = 
   new Notification(R.drawable.yourownpicturehere, getString(R.string.noticeMe), 
System.currentTimeMillis());

PendingIntent i=PendingIntent.getActivity(this, 0,
             new Intent(this, NotifyActivity.class),
                               0);
n.setLatestEventInfo(getApplicationContext(), getString(R.string.title), getString(R.string.message), i);
n.number=++count;
n.flags |= Notification.FLAG_AUTO_CANCEL;
n.flags |= Notification.DEFAULT_SOUND;
n.flags |= Notification.DEFAULT_VIBRATE;
n.ledARGB = 0xff0000ff;
n.flags |= Notification.FLAG_SHOW_LIGHTS;

// Now invoke the Notification Service
String notifService = Context.NOTIFICATION_SERVICE;
NotificationManager mgr = 
   (NotificationManager) getSystemService(notifService);
mgr.notify(NOTIFICATION_ID, n);

または、これについて優れた チュートリアル に従うことをお勧めします

1
dondondon

それが誰にも役立つ場合には...新しいAPIと古いAPIをテストするときに、サポートパッケージを使用して通知を設定するのに苦労していました。新しいデバイスで動作させることはできましたが、古いデバイスではエラーテストが行​​われました。最終的に機能したのは、通知機能に関連するすべてのインポートを削除することでした。特に、NotificationCompatとTaskStackBuilder。最初にコードを設定しているときに、サポートパッケージからではなく、新しいビルドからインポートが追加されたようです。その後、これらの項目を後でEclipseに実装したいときに、再度インポートするように求められませんでした。それが理にかなっており、それが他の誰かを助けることを願っています:)

1
snatr

自己完結型の例

この答え と同じテクニックですが、

  • 自己完結型:コピーと貼り付け。コンパイルして実行します
  • あなたが好きなだけの通知を生成し、意図と通知IDで遊ぶためのボタンで

ソース:

import Android.app.Activity;
import Android.app.Notification;
import Android.app.NotificationManager;
import Android.app.PendingIntent;
import Android.content.Context;
import Android.content.Intent;
import Android.graphics.Color;
import Android.os.Bundle;
import Android.view.View;
import Android.widget.Button;

public class Main extends Activity {
    private int i;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        final Button button = new Button(this);
        button.setText("click me");
        button.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                final Notification notification = new Notification.Builder(Main.this)
                        /* Make app open when you click on the notification. */
                        .setContentIntent(PendingIntent.getActivity(
                                Main.this,
                                Main.this.i,
                                new Intent(Main.this, Main.class),
                                PendingIntent.FLAG_CANCEL_CURRENT))
                        .setContentTitle("title")
                        .setAutoCancel(true)
                        .setContentText(String.format("id = %d", Main.this.i))
                        // Starting on Android 5, only the alpha channel of the image matters.
                        // https://stackoverflow.com/a/35278871/895245
                        // `Android.R.drawable` resources all seem suitable.
                        .setSmallIcon(Android.R.drawable.star_on)
                        // Color of the background on which the alpha image wil drawn white.
                        .setColor(Color.RED)
                        .build();
                final NotificationManager notificationManager =
                        (NotificationManager)getSystemService(Context.NOTIFICATION_SERVICE);
                notificationManager.notify(Main.this.i, notification);
                // If the same ID were used twice, the second notification would replace the first one. 
                //notificationManager.notify(0, notification);
                Main.this.i++;
            }
        });
        this.setContentView(button);
    }
}

Android 22.でテスト済み。

          // This is a working Notification
       private static final int NotificID=01;
   b= (Button) findViewById(R.id.btn);
    b.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {

            Notification notification=new       Notification.Builder(MainActivity.this)
                    .setContentTitle("Notification Title")
                    .setContentText("Notification Description")
                    .setSmallIcon(R.mipmap.ic_launcher)
                    .build();
            NotificationManager notificationManager=(NotificationManager)getSystemService(NOTIFICATION_SERVICE);
            notification.flags |=Notification.FLAG_AUTO_CANCEL;
            notificationManager.notify(NotificID,notification);


        }
    });
}
0