Istnieją dobre przykłady w androidki przykładowego kodu
. \ Android sdk \ próbki \ Android 10 \ ApiDemos \ src \ pl \ przykład \ android \ API \ app
Te, aby sprawdzić to:
- AlarmController.java
- OneShotAlarm.java
Po pierwsze, potrzebujesz odbiornika, czegoś, co może wysłuchać alarmu, gdy zostanie uruchomiony. Dodaj poniższe linie do pliku AndroidManifest.xml
<receiver android:name=".MyAlarmReceiver" />
Następnie należy utworzyć następujące klasy
public class MyAlarmReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
Toast.makeText(context, "Alarm went off", Toast.LENGTH_SHORT).show();
}
}
Następnie, aby wywołać alarm, użyj następujących (na przykład w swojej głównej działalności):
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);
.
Albo, jeszcze lepiej, zrobić klasę, która obsługuje to wszystko i używać go jak ten
Bundle bundle = new Bundle();
// add extras here..
MyAlarm alarm = new MyAlarm(this, bundle, 30);
ten sposób, masz to wszystko w jednym miejscu (nie zapomnij, aby edytować 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();
}
}
Witaj ponownie. Dziękuję za odpowiedź. Jeśli kupię twoją książkę, czy wyjaśnia ona, w jaki sposób można w pełni zaimplementować menedżera alarmów? – Tom
Książka Advanced Android (wersja 0.9) zawiera ~ 9 stron obejmujących AlarmManager, WakeLocks i resztę tego przykładu. Prawdopodobnie ulegnie to nieznacznemu rozszerzeniu w wersji 1.0, kiedy poprawiam poprawkę, o której wspomniałem w powyższej odpowiedzi. Jeśli masz pytania dotyczące książki lub jej przykładowego kodu, przejdź do http://groups.google.com/group/cw-android, a z przyjemnością odpowiem na nie. – CommonsWare
Każdy programista Android powinien mieć subskrypcję książek Marka :) Co najmniej raz – Bostone