- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
在我的应用程序中,用户加入了一个计划,然后第二天中午有一个警报通知。这是我的代码:
首先,我在 AlarmManager 中设置一个闹钟,如下所示:
//set alarm to the next day 12:00 noon of the join date
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd");
try {
alarm_date = format.parse(join_date);
} catch (ParseException e) {
e.printStackTrace();
}
GregorianCalendar calender = new GregorianCalendar();
calender.setTime(alarm_date);
calender.add(Calendar.DATE, 1);
calender.add(Calendar.HOUR_OF_DAY, 12);
//calender.add(Calendar.HOUR_OF_DAY, 14); //temp testing data
//calender.add(Calendar.MINUTE, 43);
AlarmManager am = (AlarmManager) ctx.getSystemService(Context.ALARM_SERVICE);
Intent i = new Intent(ctx, AlarmReceiver.class);
am.set(AlarmManager.RTC_WAKEUP, calender.getTimeInMillis(), PendingIntent.getBroadcast(ctx, 1, i, PendingIntent.FLAG_UPDATE_CURRENT));
然后,在预定的时间,它像这样触发接收器:
public class AlarmReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
Intent service = new Intent(context, AlarmService.class);
context.startService(service);
}
}
最后,它调用一个服务来显示通知或将应用程序置于前台(如果它在后台)。这是相关代码:
public class AlarmService extends Service {
private Context ctx;
private MyApp gs;
private SharedPreferences prefs;
NotificationManager notificationManager;
Notification myNotification;
private String joinPlanID;
private String joinPlanDate;
private int period;
public AlarmService() {
}
@Override
public IBinder onBind(Intent intent) {
return null;
}
public void checkPlanPeriod(String planID) {
if (joinPlanID.equals("1"))
period = 15;
else if (joinPlanID.equals("2"))
period = 30;
else if (joinPlanID.equals("3"))
period = 45;
}
@Override
public void onStart(Intent intent, int startId) {
ctx = getApplicationContext();
gs = (MyApp) getApplication();
prefs = PreferenceManager.getDefaultSharedPreferences(ctx);
if (prefs.getString("joinPlanID", null) != null) {
Date alarmDate = null;
joinPlanID = prefs.getString("joinPlanID", null);
joinPlanDate = prefs.getString("joinPlanDate", null);
checkPlanPeriod(joinPlanID);
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd");
try {
alarmDate = format.parse(joinPlanDate);
} catch (ParseException e) {
e.printStackTrace();
}
GregorianCalendar planCalendar = new GregorianCalendar();
planCalendar.setTime(alarmDate);
planCalendar.add(Calendar.DATE, period);
Calendar now = Calendar.getInstance();
now.add(Calendar.DATE, 1);
Calendar tomorrowAlarm = Calendar.getInstance();
tomorrowAlarm.set(Calendar.YEAR, now.get(Calendar.YEAR));
tomorrowAlarm.set(Calendar.MONTH, now.get(Calendar.MONTH));
tomorrowAlarm.set(Calendar.DAY_OF_MONTH, now.get(Calendar.DAY_OF_MONTH));
tomorrowAlarm.set(Calendar.HOUR_OF_DAY, 12);
tomorrowAlarm.set(Calendar.MINUTE, 0);
tomorrowAlarm.set(Calendar.SECOND, 0);
tomorrowAlarm.set(Calendar.MILLISECOND, 0);
if (planCalendar.compareTo(tomorrowAlarm) != -1) {
//set the next day alarm
AlarmManager am = (AlarmManager) ctx.getSystemService(Context.ALARM_SERVICE);
Intent i = new Intent(ctx, AlarmReceiver.class);
am.set(AlarmManager.RTC_WAKEUP, tomorrowAlarm.getTimeInMillis(), PendingIntent.getBroadcast(ctx, 1, i, PendingIntent.FLAG_UPDATE_CURRENT));
}
}
if (gs.getIsAppStart()) {
Intent dialogIntent = new Intent(this, Main.class);
dialogIntent.putExtra("is_remind", true);
dialogIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
this.startActivity(dialogIntent);
} else {
NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(ctx)
.setSmallIcon(R.drawable.ic_launcher)
.setContentTitle(getResources().getString(R.string.notify_title))
.setContentText(getResources().getString(R.string.notify_msg));
Intent toLaunch = new Intent(getApplicationContext(), Main.class);
toLaunch.putExtra("is_remind", true);
toLaunch.setFlags(Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
PendingIntent intentBack = PendingIntent.getActivity(ctx, 0, toLaunch,PendingIntent.FLAG_UPDATE_CURRENT);
mBuilder.setContentIntent(intentBack);
NotificationManager mNotificationManager = (NotificationManager) ctx.getSystemService(Context.NOTIFICATION_SERVICE);
// Send Notification
Notification primaryNotification = mBuilder.build();
mNotificationManager.notify(10001, primaryNotification);
}
}
}
问题是,如果我重置我的设备,它既不会触发警报,我的接收器也不会收到任何东西。我该如何解决?
最佳答案
添加一个BootReceiver
类
public class BootReceiver extends BroadcastReceiver {
private static final String BOOT_COMPLETED =
"android.intent.action.BOOT_COMPLETED";
private static final String QUICKBOOT_POWERON =
"android.intent.action.QUICKBOOT_POWERON";
@Override
public void onReceive(Context context, Intent intent) {
String action = intent.getAction();
if (action.equals(BOOT_COMPLETED) ||
action.equals(QUICKBOOT_POWERON)) {
Intent service = new Intent(context, BootService.class);
context.startService(service);
}
}
}
添加一个BootService
类
public class BootService extends IntentService {
public BootService() {
super("BootService");
}
private void setAlarm() {
// Set your alarm here as you do in "1. First I set an alarm in alarm manager"
}
private void setAlarmsFromDatabase() {
// Set your alarms from database here
}
@Override
protected void onHandleIntent(Intent intent) {
setAlarm();
setAlarmsFromDatabase(); // A nice a approach is to store alarms on a database, you may not need it
Intent service = new Intent(this, BootService.class);
stopService(service);
}
}
然后在你的 AndroidManifest.xml
添加
<receiver android:name=".BootReceiver"
android:enabled="true">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"/>
<action android:name="android.intent.action.QUICKBOOT_POWERON" />
</intent-filter>
</receiver>
<service android:name=".BootService"
android:enabled="true"/>
同时添加这个权限
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
现在您可以重新启动设备,每次设备启动时都会设置闹钟
关于android - 手机重启后AlarmManager报警不触发,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26296270/
这个问题已经有答案了: jQuery trigger click vs click ()? (3 个回答) 已关闭 5 年前。 我无法区分 trigger('click')与 trigger('cli
我正在运行 VS 2008 和 .NET 3.5 SP1。 我想在 HttpModule 中实现命中跟踪在我的 ASP.NET 应用程序中。很简单,我想。然而,BeginRequest我的事件 Htt
这是一段代码,我收到以下错误 #1064 - You have an error in your SQL syntax; check the manual that corresponds to yo
有没有办法用任意增量触发滚轮事件。就像 jQuery 对“点击”所做的那样: $('#selector').trigger('click'); 我需要类似的东西,只需一个滚轮即可: $('#selec
我正在尝试在配音数据库中触发时间。我想检查一下在不出现角色的电影配音中不能对角色进行配音。这是PDM: 和CDM 我是SQL的初学者,但我知道表“DUBBES”中应该有一些触发器。我试图做这样的事情,
这个问题已经有答案了: jquery programmatically click on new dom element (3 个回答) 已关闭 6 年前。 我有一个 jQuery 事件定义如下: $
主菜单的点击代码适用于类更改,但不适用于子菜单...当单击食物或鞋子等子菜单项时,它不会触发警报命令...事实上,悬停非常适合子菜单但不是活跃的 HTML
问题非常简单: $('#btn1').click(function(event){ alert( "pageX: " + event.pageX + "\npa
我使用 Spring 的调度程序 (@EnableScheduling) 并具有以下 @Scheduled 方法,该方法每分钟调用一次: @Component public class Schedul
错误 SQL 查询:文档 CREATE TRIGGER `triggers_div` AFTER INSERT ON `produits` FOR EACH ROW BEGIN INSERT INTO
我想在插入另一个表时填充表中的一些列值,并为特定列设置条件。我使用触发器: CREATE TRIGGER inserttrigger AFTER INSERT ON table1 FOR EACH R
我可以在 5.6 MySQL 环境中使用一些关于触发器的指导。我想创建一个触发器,如果发现具有相同速度的电脑的价格较低,则该触发器会停止更新。 架构是产品(制造商、型号、类型)PC(型号、速度、内
背景:我们有一个 completed_flag,默认为 0,当有人完成调查时更新为 1。我想记录这次更新发生的时间戳 在编写了这个触发器/函数以在标志从 0 触发到 1 时更新时间戳后,我怀疑我这样做
数据库中有两个表 KistStatus和 LastKistStatus .后者将保存 KistStatus 的所有“最新”值。 . KistStatus有大约 174.000 条记录,LastKist
我正在开发一个使用 APNS 的 iPhone 应用程序。我很清楚实现 APNS、创 build 备 token 的过程,等等等等……我不知道如何通过 Web 服务从提供商端触发和启动 APNS。任何
我有这个 javascript,当数量更改时会触发 update_cart... jQuery('div.woocommerce').on('change', '.qty', function
当我单击任何按钮时,click 事件不会被触发。艰难的是,我使用 $("div").on("click", "button", function () { 让它工作,但我想看到它使用 .class 工
如何在我的代码中触发 Android onCreateOptionsMenu 函数,即无需用户单击手机上的选项菜单按钮? 最佳答案 Activity.openOptionsMenu(); 就可以了 关
我将表单包装在 中然后我设置 list android:windowSoftInputMode="adjustResize" (默认 react native )。现在,当我用手指触摸事件手动聚焦一
我有一个 Android 编程问题。使用下面的代码我想验证一个字符串匹配。它验证正常,但 LogCat 显示 TextWatcher 方法在每次击键时触发两次,我不明白为什么。我希望每次击键只触发一次
我是一名优秀的程序员,十分优秀!