AlarmManager
が設定されてから20分後にコードのブロックをトリガーする必要があります。
SomeoneAndroidでAlarmManager
を使用する方法のサンプルコードを見せてもらえますか?
私は数日間、いくつかのコードをいじってみましたが、うまくいきません。
「いくつかのサンプルコード」は、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()
です。
これは大きなサンプルプロジェクトです このテクニックを示しています。
Androidサンプルコードにはいくつかの良い例があります
。\ Android-sdk\samples\Android-10\ApiDemos\src\com\example\Android\apis\app
チェックアウトするものは次のとおりです。
まず、トリガーされたときにアラームを聞くことができる受信機が必要です。以下を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();
}
}
あなたがする必要があるのは、最初にスケジュールする必要があるインテントを作成することです。次に、そのインテントのpendingIntentを取得します。アクティビティ、サービス、ブロードキャストをスケジュールできます。 MyActivity:などのアクティビティをスケジュールするには
Intent i = new Intent(getApplicationContext(), MyActivity.class);
PendingIntent pi = PendingIntent.getActivity(getApplicationContext(),3333,i,
PendingIntent.FLAG_CANCEL_CURRENT);
AlarmManagerにこのpendingIntentを与えます:
//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
私はコメントしたかったが、50人未満の担当者だったので、ここに行く。 5.1以上で実行している場合、1分未満の間隔を使用すると、次のようになります:
Suspiciously short interval 5000 millis; expanding to 60 seconds
here を参照してください。
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);
ユーザーの許可を求める必要はありません。