web-dev-qa-db-ja.com

アプリが閉じられたときにAndroid通知を受け取る方法は?

Webserivceから、日付と時刻の形式でデータを取得しています。つまり、特定の日付について、スロットのセットがあります。次の図に詳細な説明があります。 enter image description here

ここでは、各日付にタイミングを設定しています。ここで私が欲しいのは、特定の日時に通知を表示することです。データベースからの応答が、2012年7月12日の午前11:00のような明日の日付で構成されている場合。その時に通知を表示する必要があります。

私は通知マネージャーと私が使用しているコードに関していくつかの考えを持っています。

Main.Java

      NotificationManager notificationManager = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);
    Notification notification = new Notification(R.drawable.ic_action_search, "A New Message!", System.currentTimeMillis());

    Intent notificationIntent = new Intent(this, Main.class);
    PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, notificationIntent, 0);

    notification.setLatestEventInfo(Main.this, notificationTitle, notificationMessage, pendingIntent);
    notificationManager.notify(10001, notification);

ただし、ここではアプリが閉じられたときにも通知を受け取る必要があります。だから、誰かがこれを手伝ってくれます。

12
user1578518

(開始された)Serviceをアプリケーションに追加します。ユーザーがアプリを終了した場合でも、サービスはバックグラウンドで実行されます。

さらに、電話のインテントをリッスンし、電話の起動時にサービスを開始できるBroadcastReceiverを実装できます。

MyService.Java

public class MyService extends Service {

@Override
public int onStartCommand(Intent intent, int flags, int startId){
    // START YOUR TASKS
return super.onStartCommand(intent, flags, startId);
}

@Override
public void onDestroy() {
    // STOP YOUR TASKS
super.onDestroy();
}

@Override
public IBinder onBind(Intent intent){
    return null;
}

BootReceiver.Java

public class BootReceiver extends BroadcastReceiver {
    @Override
    public void onReceive(Context context, Intent intent) {
        if ("Android.intent.action.BOOT_COMPLETED".equals(intent.getAction())) {
            Intent serviceIntent = new Intent("your.package.MyService");
            context.startService(serviceIntent);
            }
        }
    }
}

AndroidManifest.xml

//マニフェストタグ内

<uses-permission Android:name="Android.permission.RECEIVE_BOOT_COMPLETED" />

//アプリケーションタグ内

<service Android:name=".MyService">
    <intent-filter>
        <action Android:name="your.package.MyService" />
    </intent-filter>
</service>

<receiver
    Android:name=".BootReceiver"
    Android:enabled="true"
    Android:exported="true"
    Android:label="BootReceiver">
    <intent-filter>
        <action Android:name="Android.intent.action.BOOT_COMPLETED" />
    </intent-filter>
</receiver>

アクティビティからサービスを開始したい場合は、

private boolean isMyServiceRunning() {
         ActivityManager manager = (ActivityManager) getSystemService(Context.ACTIVITY_SERVICE);
         for (RunningServiceInfo service : manager.getRunningServices(Integer.MAX_VALUE)) {
             if (MyService.class.getName().equals(service.service.getClassName())) {
                 return true;
             }
         }
         return false;
     }

if (!isMyServiceRunning()){
     Intent serviceIntent = new Intent("your.package.MyService");
     context.startService(serviceIntent);
}
15
PeterGriffin

データがサーバーからのものである場合は、 [〜#〜] gcm [〜#〜] を利用することをお勧めします。この場合、サーバーはアプリケーションをウェイクアップ/起動する機能を備えています。

あなたのケースで常に実行されているサービスを作成することは、くだらない解決策です。 IMOのより良いアプローチは、 AlarmManager を使用することです。アラームマネージャは特定の時間にインテントを呼び出します。 (電話が再起動した場合は、インテントを再度登録する必要があることに注意してください)。

5
Marek R