92

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

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

私は数日間いくつかのコードをいじっていましたが、うまくいきません。

4

6 に答える 6

111

「いくつかのサンプルコード」は、それに関してはそれほど簡単ではありません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()です。

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

于 2009-07-04T19:30:03.410 に答える
68

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();
     }
}
于 2011-10-31T21:38:52.013 に答える
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 は、アプリケーションを停止しても、デバイスがスリープ状態になっても (RTC_WAKEUP オプションにより) 、アプリケーションの起動から 5 秒後に起動されます。完全なサンプル コードを読むことができますスケジュール アクティビティ、サービス、およびブロードキャスト #Android

于 2012-06-19T08:29:04.310 に答える
4

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

Suspiciously short interval 5000 millis; expanding to 60 seconds

ここを参照してください。

于 2015-04-14T22:34:36.610 に答える
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);

ユーザーの許可を求める必要はありません。

于 2011-11-03T11:39:37.593 に答える