Androidのサービスから通知を送信する


105

サービスを実行していますが、通知を送信したいと考えています。残念ながら、通知オブジェクトにはのContextようなが必要であり、は必要ActivityありませんService

あなたはそれを回避する方法を知っていますか?Activity通知ごとにを作成しようとしましたが、醜いようで、Activityなしでを起動する方法を見つけることができませんView


14
うーん...サービスコンテキストです!
Isaac Waller

19
神、私はそのようなダンバスです。みんなの時間を無駄にして申し訳ありません。
e-satis

28
それは結構です-それは良いGoogleの質問です。
Isaac Waller、

2番目のコメントのように:D:D
Faizan Mubasher

この投稿は私の一日を救った...
ムハンマドファイザン

回答:


109

どちらActivityService実際にextend Contextあなたは、単に使用することができthis、あなたのようContextあなたの内にService

NotificationManager notificationManager =
    (NotificationManager) getSystemService(Service.NOTIFICATION_SERVICE);
Notification notification = new Notification(/* your notification */);
PendingIntent pendingIntent = /* your intent */;
notification.setLatestEventInfo(this, /* your content */, pendingIntent);
notificationManager.notify(/* id */, notification);

4
サービスからの通知を行うと、多くの問題が発生することに注意してください。あなたは問題がある場合、これを見てみgroups.google.com/group/android-developers/browse_thread/thread/...
Karussell

1
どのようにNotification.Builderを使用してこれを行うことができますか?setLatestEventInfoはすでに廃止されているためです。
カイリサン2016

77

ドキュメントからわかるように、このタイプの通知は非推奨です。

@java.lang.Deprecated
public Notification(int icon, java.lang.CharSequence tickerText, long when) { /* compiled code */ }

public Notification(android.os.Parcel parcel) { /* compiled code */ }

@java.lang.Deprecated
public void setLatestEventInfo(android.content.Context context, java.lang.CharSequence contentTitle, java.lang.CharSequence contentText, android.app.PendingIntent contentIntent) { /* compiled code */ }

より良い方法次の
ような通知を送信できます。

// prepare intent which is triggered if the
// notification is selected

Intent intent = new Intent(this, NotificationReceiver.class);
PendingIntent pIntent = PendingIntent.getActivity(this, 0, intent, 0);

// build notification
// the addAction re-use the same intent to keep the example short
Notification n  = new Notification.Builder(this)
        .setContentTitle("New mail from " + "test@gmail.com")
        .setContentText("Subject")
        .setSmallIcon(R.drawable.icon)
        .setContentIntent(pIntent)
        .setAutoCancel(true)
        .addAction(R.drawable.icon, "Call", pIntent)
        .addAction(R.drawable.icon, "More", pIntent)
        .addAction(R.drawable.icon, "And more", pIntent).build();


NotificationManager notificationManager = 
  (NotificationManager) getSystemService(NOTIFICATION_SERVICE);

notificationManager.notify(0, n); 


上記の最良の方法では、最小APIレベル11(Android 3.0)が必要です。
最小APIレベルが11未満の場合は、サポートライブラリのNotificationCompatクラスを次のように使用する必要があります。

したがって、最小ターゲットAPIレベルが4+(Android 1.6+)の場合、これを使用します。

    import android.support.v4.app.NotificationCompat;
    -------------
    NotificationCompat.Builder builder =
            new NotificationCompat.Builder(this)
                    .setSmallIcon(R.drawable.mylogo)
                    .setContentTitle("My Notification Title")
                    .setContentText("Something interesting happened");
    int NOTIFICATION_ID = 12345;

    Intent targetIntent = new Intent(this, MyFavoriteActivity.class);
    PendingIntent contentIntent = PendingIntent.getActivity(this, 0, targetIntent, PendingIntent.FLAG_UPDATE_CURRENT);
    builder.setContentIntent(contentIntent);
    NotificationManager nManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
    nManager.notify(NOTIFICATION_ID, builder.build());

4
受け入れられた1が廃止されて以来、これが最良の答えでなければなりません
マルセルKrivek

4
@MarcelKrivekは、彼または彼女がソースを引用するのを「忘れた」ようです。vogella.com/tutorials/AndroidNotifications/article.html
StarWind0

「NotificationReceiver」とは何ですか?
user3690202

「NotificationReceiver」は、通知によって開かれるアクティビティです。@ StarWind0が提供するリンクを確認してください。
ジョージ・テオドラキス、

NotificationCompat.Builderはすでに非推奨です。その現在、最良の答えではありません
Devil's Dream

7
@TargetApi(Build.VERSION_CODES.JELLY_BEAN)
public void PushNotification()
{
    NotificationManager nm = (NotificationManager)context.getSystemService(NOTIFICATION_SERVICE);
    Notification.Builder builder = new Notification.Builder(context);
    Intent notificationIntent = new Intent(context, MainActivity.class);
    PendingIntent contentIntent = PendingIntent.getActivity(context,0,notificationIntent,0);

    //set
    builder.setContentIntent(contentIntent);
    builder.setSmallIcon(R.drawable.cal_icon);
    builder.setContentText("Contents");
    builder.setContentTitle("title");
    builder.setAutoCancel(true);
    builder.setDefaults(Notification.DEFAULT_ALL);

    Notification notification = builder.build();
    nm.notify((int)System.currentTimeMillis(),notification);
}

トピックの質問はアクティビティではなくサービスからのものです
Duna

1

まあ、私の解決策がベストプラクティスかどうかはわかりません。NotificationBuilder私のコードを使用すると、次のようになります。

private void showNotification() {
    Intent notificationIntent = new Intent(this, MainActivity.class);

    PendingIntent contentIntent = PendingIntent.getActivity(
                this, 0, notificationIntent, PendingIntent.FLAG_UPDATE_CURRENT);
    builder.setContentIntent(contentIntent);
    NotificationManager notificationManager =
            (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
    notificationManager.notify(NOTIFICATION_ID, builder.build());
    }

マニフェスト:

    <activity
        android:name=".MainActivity"
        android:launchMode="singleInstance"
    </activity>

そしてここにサービス:

    <service
        android:name=".services.ProtectionService"
        android:launchMode="singleTask">
    </service>

singleTaskat Serviceが本当にあるかどうかはわかりませんが、これは私のアプリケーションで適切に動作します...


これのビルダーは何ですか?
Viswanath Lekshmanan

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.