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);
この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
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);
ユーザーの権限を尋ねる必要はありません。
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分まで増加する可能性があります。