web-dev-qa-db-ja.com

BroadcastReceiverで通知を作成する

私はこのコードで通知を作成しようとしました:

private void setNotificationAlarm(Context context) 
{
    Intent intent = new Intent(getApplicationContext() , MyNotification.class);
    PendingIntent pendingIntent  = PendingIntent.getBroadcast(this, 0, intent, PendingIntent.FLAG_CANCEL_CURRENT);  

    AlarmManager am = (AlarmManager) getSystemService(Context.ALARM_SERVICE);
    am.setRepeating(AlarmManager.RTC_WAKEUP, System.currentTimeMillis(), 1000 , pendingIntent);
    Log.d("ME", "Alarm started");
}

public class MyNotification extends BroadcastReceiver
{
    @Override
    public void onReceive(Context context, Intent intent) 
    {
        Log.d("ME", "Notification started");

        NotificationCompat.Builder mBuilder =
            new NotificationCompat.Builder(context)
            .setSmallIcon(R.drawable.ic_launcher)
            .setContentTitle("My notification")
            .setContentText("Hello World!");

        NotificationManager mNotificationManager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
        mNotificationManager.notify(1, mBuilder.build());
    }
}

そしてここに私のメインフェスト宣言:

<receiver
    Android:name=".MyNotification"
    Android:enabled="true"
    Android:exported="false" >
</receiver>

私の問題は、アラームが生成されても通知が表示されないことです。 BroadcastReceiverはmainfestファイルで宣言されており、コンパイラエラーや実行時エラーはありません。

2つ目の問題は、setLatestEventInfonew Notification Contructorは非推奨です。代わりに何を使用できますか?

17
Cilenco

使う必要があると思います

PendingIntent.getBroadcast (Context context, int requestCode, Intent intent, int flags)

getServiceの代わりに

9
Ashwini Bhangi

あなたは使うことができます

Intent switchIntent = new Intent(BROADCAST_ACTION);

使用する代わりに

Intent intent = new Intent(getApplicationContext() , MyNotification.class);

ここでBROADCAST_ACTIONはマニフェストで定義しているアクションです

<receiver Android:name=".MyNotification " Android:enabled="true" >
    <intent-filter>
        <action Android:name="your package.ANY_NAME" />
    </intent-filter>
</receiver>

そのアクション名を使用してそれをキャッチできます

public class MyNotification extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
    String act = "your package.ANY_NAME";
        if(intent.getAction().equals(act)){

            //your code here
        }
}}
8

_Notification.Builder_を使用して今すぐ通知を作成し、保留中のインテントはPendingIntent.getBroadcast()である必要があります

3
tyczj