Android 设置定时闹铃的完整解决方案,适配到Android13

之前在做定位的时候,遇到一个问题,在华为的pad上黑屏超过一小时就获取不到定位权限的问题,试了很多种方法,即使是使用长连接保持活跃也不行,最后没办法了,做了定时闹铃点亮屏幕。

我想要的效果是在一天的某个时间段,一小时定时点亮一次。像这种长期定时的需求,还是用系统闹铃来做比较合适。

权限

java 复制代码
<uses-permission android:name="android.permission.WRITE_SETTINGS"

加这个权限是为了适配Android12以上机器

1.创建闹铃

java 复制代码
Intent intent = new Intent(this, WakeupReceiver.class);
        AlarmManager alarmManager = (AlarmManager) getSystemService(Context.ALARM_SERVICE);

        PendingIntent pendingIntent;
        if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.S) {
            pendingIntent =
                    PendingIntent.getBroadcast(this, 0, intent,
                            PendingIntent.FLAG_IMMUTABLE);
        } else {
            pendingIntent =
                    PendingIntent.getBroadcast(this, 0, intent,
                            0);
        }
        if (alarmManager!=null&&pendingIntent!=null){
            alarmManager.cancel(pendingIntent);
        }
        alarmManager.setExact(AlarmManager.RTC_WAKEUP, System.currentTimeMillis()+interval, pendingIntent);
        

setexact 创建一次闹铃,并且在在创建之前取消已经设置过的,在接收到闹铃回调的地方再调下次闹铃。这是目前系统给出的长时间重复闹铃的最好解决方法,Android19以后setrepeat不稳定,这个我也尝试过了,定了个一小时的闹铃,结果十分钟就响应了,很坑。

2.接收闹铃并回调

java 复制代码
public class WakeupReceiver extends BroadcastReceiver {
    @SuppressLint("ScheduleExactAlarm")
    @Override
    public void onReceive(Context context, Intent intent) {
        Calendar calendar2 = Calendar.getInstance();
        calendar2.set(Calendar.HOUR_OF_DAY, 20); // 设置开始时间为早上8点
        calendar2.set(Calendar.MINUTE, 30);
        calendar2.set(Calendar.SECOND, 0);
        long endTime = calendar2.getTimeInMillis(); // 获取结束时间的毫秒数
        Calendar calendar = Calendar.getInstance();
        calendar.set(Calendar.HOUR_OF_DAY, 7); // 设置开始时间为早上8点
        calendar.set(Calendar.MINUTE, 30);
        calendar.set(Calendar.SECOND, 0);


        long startTime = calendar.getTimeInMillis(); // 获取开始时间的毫秒数
        if (System.currentTimeMillis() <= endTime && startTime < System.currentTimeMillis()) {
            // 在这里编写您要执行的动作代码
            // 这里会在每个小时触发
            AliveService.wakeUpAndUnlock();
            LocationUtils.updateLocationnodata("唤醒");
        }
        Intent intent2 = new Intent(context, WakeupReceiver.class);
        AlarmManager alarmManager = (AlarmManager) context.getSystemService(Context.ALARM_SERVICE);

        PendingIntent pendingIntent;
        if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.S) {
            pendingIntent =
                    PendingIntent.getBroadcast(context, 0, intent2,
                            PendingIntent.FLAG_IMMUTABLE);
        } else {
            pendingIntent =
                    PendingIntent.getBroadcast(context, 0, intent2,
                            0);
        }
        if (alarmManager!=null&&pendingIntent!=null){
            alarmManager.cancel(pendingIntent);
        }
        alarmManager.setExact(AlarmManager.RTC_WAKEUP, System.currentTimeMillis()+interval, pendingIntent);
       

做了时间约束,早上七点半到晚上8点半才会点亮屏幕,其他时间不处理,然后重新再发一次闹铃。闹铃时间间隔我用了常量配置

复制代码
public static final long interval = 1 * 60 * 1000 * 60;

3.在清单文件种配置

java 复制代码
<receiver
            android:name=".keeepalive.WakeupReceiver"
            android:enabled="true"
            android:exported="false" />

至此,闹铃配置完成,测试通过。

相关推荐
whysqwhw1 小时前
OkHttp深度架构缺陷分析与演进规划
android
用户7093722538511 小时前
Android14 SystemUI NotificationShadeWindowView 加载显示过程
android
木叶丸2 小时前
跨平台方案该如何选择?
android·前端·ios
顾林海2 小时前
Android ClassLoader加载机制详解
android·面试·源码
用户2018792831672 小时前
🎨 童话:Android画布王国的奇妙冒险
android
whysqwhw3 小时前
OkHttp框架的全面深入架构分析
android
你过来啊你3 小时前
Android App冷启动流程详解
android
泓博4 小时前
KMP(Kotlin Multiplatform)改造(Android/iOS)老项目
android·ios·kotlin
移动开发者1号4 小时前
使用Baseline Profile提升Android应用启动速度的终极指南
android·kotlin
移动开发者1号4 小时前
解析 Android Doze 模式与唤醒对齐
android·kotlin