安卓:如何使用报警管理器
2022-08-31 11:06:54
我需要在设置后20分钟后触发一个代码块。AlarmManager
有人可以向我展示有关如何在 ِAndroid 中使用的示例代码吗?AlarmManager
我已经玩了几天代码,它只是不起作用。
我需要在设置后20分钟后触发一个代码块。AlarmManager
有人可以向我展示有关如何在 ِAndroid 中使用的示例代码吗?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);
这样,您就可以将其全部放在一个地方(不要忘记编辑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();
}
}