Android:AlarmManagerの使用方法


89

AlarmManager設定から20分後にコードのブロックをトリガーする必要があります。

someoneAndroidでを使用する方法のサンプルコードを誰かに見せてもらえますかAlarmManager

私は数日間コードをいじっていますが、うまくいきません。

回答:


109

「一部のサンプルコード」は、となるとそれほど簡単ではありませんAlarmManager

ここに設定を示すスニペットがありますAlarmManager

AlarmManager mgr=(AlarmManager)context.getSystemService(Context.ALARM_SERVICE);
Intent i=new Intent(context, OnAlarmReceiver.class);
PendingIntent pi=PendingIntent.getBroadcast(context, 0, i, 0);

mgr.setRepeating(AlarmManager.ELAPSED_REALTIME_WAKEUP, SystemClock.elapsedRealtime(), PERIOD, pi);

この例では、を使用していsetRepeating()ます。ワンショットアラームが必要な場合は、を使用しますset()。アラームが開始するまでの時間を、の初期パラメータで使用するのと同じ時間基準で指定してくださいset()。上記の例では、を使用AlarmManager.ELAPSED_REALTIME_WAKEUPしているため、タイムベースはSystemClock.elapsedRealtime()です。

これは、この手法を示す大きなサンプルプロジェクトです。


2
またあったね。返信いただきありがとうございます。私があなたの本を購入した場合、アラームマネージャーの実装方法が詳細に説明されていますか?
トム

7
Advanced Androidブック(バージョン0.9)には、AlarmManager、WakeLocks、およびその例の残りの部分をカバーする約9ページがあります。上記の回答で述べた修正を行うと、バージョン1.0では少し拡張されるでしょう。また、本またはそのサンプルコードについて質問がある場合は、groups.google.com / group / cw-androidにアクセスしてください。喜んで回答させていただきます。
CommonsWare 2009

17
すべてのAndroid開発者は、Markの本を購読する必要があります:)少なくとも1回
Bostone

1
@MarioGalván:アプリを初めて実行するとき、および再起動時に設定する必要があります。
CommonsWare 2014

すぐに起動し、次にすべてのPERIODを起動する場合は、AlarmManager.RTC_WAKEUPを使用する必要があると思います。コードでは、SystemClock.elapsedRealtime()の後に起動され、その後すべてのPERIODが起動します。
Damon Yuan

66

androidサンプルコードにいくつかの良い例があります

。\ android-sdk \ samples \ android-10 \ ApiDemos \ src \ com \ example \ android \ apis \ app

チェックアウトするものは次のとおりです。

  • AlarmController.java
  • OneShotAlarm.java

まず、アラームがトリガーされたときにアラームを聞くことができるレシーバーが必要です。以下をAndroidManifest.xmlファイルに追加します

<receiver android:name=".MyAlarmReceiver" />

次に、次のクラスを作成します

public class MyAlarmReceiver extends BroadcastReceiver { 
     @Override
     public void onReceive(Context context, Intent intent) {
         Toast.makeText(context, "Alarm went off", Toast.LENGTH_SHORT).show();
     }
}

次に、アラームをトリガーするには、次を使用します(たとえば、メインアクティビティで)。

AlarmManager alarmMgr = (AlarmManager)getSystemService(Context.ALARM_SERVICE);
Intent intent = new Intent(this, MyAlarmReceiver.class);
PendingIntent pendingIntent = PendingIntent.getBroadcast(this, 0, intent, 0);
Calendar time = Calendar.getInstance();
time.setTimeInMillis(System.currentTimeMillis());
time.add(Calendar.SECOND, 30);
alarmMgr.set(AlarmManager.RTC_WAKEUP, time.getTimeInMillis(), pendingIntent);


または、さらに良いことに、すべてを処理するクラスを作成し、次のように使用します

Bundle bundle = new Bundle();
// add extras here..
MyAlarm alarm = new MyAlarm(this, bundle, 30);

このようにして、すべてを1か所にまとめます(を編集することを忘れないでくださいAndroidManifest.xml

public class MyAlarm extends BroadcastReceiver {
    private final String REMINDER_BUNDLE = "MyReminderBundle"; 

    // this constructor is called by the alarm manager.
    public MyAlarm(){ }

    // you can use this constructor to create the alarm. 
    //  Just pass in the main activity as the context, 
    //  any extras you'd like to get later when triggered 
    //  and the timeout
     public MyAlarm(Context context, Bundle extras, int timeoutInSeconds){
         AlarmManager alarmMgr = 
             (AlarmManager)context.getSystemService(Context.ALARM_SERVICE);
         Intent intent = new Intent(context, MyAlarm.class);
         intent.putExtra(REMINDER_BUNDLE, extras);
         PendingIntent pendingIntent =
             PendingIntent.getBroadcast(context, 0, intent, 
             PendingIntent.FLAG_UPDATE_CURRENT);
         Calendar time = Calendar.getInstance();
         time.setTimeInMillis(System.currentTimeMillis());
         time.add(Calendar.SECOND, timeoutInSeconds);
         alarmMgr.set(AlarmManager.RTC_WAKEUP, time.getTimeInMillis(),
                      pendingIntent);
     }

      @Override
     public void onReceive(Context context, Intent intent) {
         // here you can get the extras you passed in when creating the alarm
         //intent.getBundleExtra(REMINDER_BUNDLE));

         Toast.makeText(context, "Alarm went off", Toast.LENGTH_SHORT).show();
     }
}

2
こんにちは!私はこのコードをテストしましたが、問題なく動作しました(+1)。しかし、私はこれを複数のアラーム(10 seconsのアラームと15のアラームなど)に試してみましたが、sencondアラームだけが起動されます。 :stackoverflow.com/questions/2844274/...
ヌーノ・ゴンサルヴェス

FWIW、私はこれのコンストラクターではなく静的メソッドを使用します。
Edward Falk 2015

9

まず、スケジュールする必要のあるインテントを作成する必要があります。次に、そのインテントのpendingIntentを取得します。あなたは活動、サービス、放送をスケジュールすることができます。MyActivityなどのアクティビティをスケジュールするには:

  Intent i = new Intent(getApplicationContext(), MyActivity.class);
  PendingIntent pi = PendingIntent.getActivity(getApplicationContext(),3333,i,
  PendingIntent.FLAG_CANCEL_CURRENT);

このpendingIntentをalarmManagerに渡します。

  //getting current time and add 5 seconds in it
  Calendar cal = Calendar.getInstance();
  cal.add(Calendar.SECOND, 5);
  //registering our pending intent with alarmmanager
  AlarmManager am = (AlarmManager) getSystemService(ALARM_SERVICE);
  am.set(AlarmManager.RTC_WAKEUP,cal.getTimeInMillis(), pi);

MyActivityは、アプリケーションを起動してから5秒後に起動します。アプリケーションを停止したり、デバイスがスリープ状態になったりしても(RTC_WAKEUPオプションにより)。完全なサンプルコードのスケジューリングアクティビティ、サービス、ブロードキャストを読むことができます#Android


+1すばらしい答え、正確に私が必要としたもの、実用的な「セット」の例。
A.Alqadomi 2014年

4

私はコメントしたかったのですが、<50担当者なので、ここに行きます。5.1以上で実行していて、1分未満の間隔を使用すると、これが発生することを覚えておいてください。

Suspiciously short interval 5000 millis; expanding to 60 seconds

こちらをご覧ください


3

Alarmmanagerからサービスを呼び出す場合のサンプルコード:

PendingIntent pi;
AlarmManager mgr;
mgr = (AlarmManager)ctx.getSystemService(Context.ALARM_SERVICE);
Intent i = new Intent(DataCollectionActivity.this, HUJIDataCollectionService.class);    
pi = PendingIntent.getService(DataCollectionActivity.this, 0, i, 0);
mgr.setRepeating(AlarmManager.ELAPSED_REALTIME_WAKEUP, SystemClock.elapsedRealtime() , 1000, pi);

ユーザーの権限を尋ねる必要はありません。


非常に一般的な略語。
ファントマックス2014年

0

AlarmManagerは、特定の時間にいくつかのコードをトリガーするために使用されます。

アラームマネージャーを起動するには、最初にシステムからインスタンスを取得する必要があります。次に、指定した将来実行されるPendingIntentを渡します

AlarmManager manager = (AlarmManager) getSystemService(Context.ALARM_SERVICE);

Intent alarmIntent = new Intent(context, MyAlarmReceiver.class);
PendingIntent pendingIntent = PendingIntent.getBroadcast(context, 0, alarmIntent, 0);
int interval = 8000; //repeat interval
manager.setInexactRepeating(AlarmManager.RTC_WAKEUP, System.currentTimeMillis(), interval, pendingIntent);

アラームマネージャーの使用中は注意が必要です。通常、アラームマネージャは1分前に​​繰り返すことはできません。また、低電力モードでは、持続時間は最大15分まで増加する可能性があります。

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