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" />

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

相关推荐
CANI_PLUS3 小时前
ESP32将DHT11温湿度传感器采集的数据上传到XAMPP的MySQL数据库
android·数据库·mysql
来来走走4 小时前
Flutter SharedPreferences存储数据基本使用
android·flutter
安卓开发者5 小时前
Android模块化架构深度解析:从设计到实践
android·架构
雨白5 小时前
HTTP协议详解(二):深入理解Header与Body
android·http
阿豪元代码6 小时前
深入理解 SurfaceFlinger —— 如何调试 SurfaceFlinger
android
阿豪元代码6 小时前
深入理解 SurfaceFlinger —— 概述
android
CV资深专家7 小时前
Launcher3启动
android
stevenzqzq8 小时前
glide缓存策略和缓存命中
android·缓存·glide
雅雅姐8 小时前
Android 16 的用户和用户组定义
android
没有了遇见8 小时前
Android ConstraintLayout 之ConstraintSet
android