Android:手机重启后设置闹钟/提醒

问题描述 投票:0回答:2

我正在开发集成了提醒功能的Android应用。如果手机保持开机状态,通知会起作用,但是当我关闭手机或重新启动手机时,我会丢失所有警报。我知道这是Android功能,可以提高手机效率,但是我不知道该怎么办,如何解决此问题?

这里是我的文件:

  • AlarmService.java

  • AlarmReceiver.java

  • BootAlarmReceiver.java

  • AndroidManifest.xml

“ AlarmService.java”在开机时被“ BootAlarmReceiver.java”调用,并且应该,但没有,重新加载我的所有警报。从AlarmManager发出警报时,将调用“ AlarmReceiver.java”。

这里是代码:

AlarmService.java

public class AlarmService extends IntentService {
    public AlarmService() {
        super("AlarmService");
    }
@Override
protected void onHandleIntent(@Nullable Intent intent) {
    Calendar calendar = Calendar.getInstance();
    FileInputStream fileInputStream = null;
    int requestCode, year, month, day, hour, minute;
    String note, with;

    try {
        fileInputStream = openFileInput("my_alarms.csv");
        InputStreamReader inputStreamReader = new InputStreamReader(fileInputStream);
        BufferedReader bufferedReader = new BufferedReader(inputStreamReader);
        String row;

        while ((row = bufferedReader.readLine()) != null) {
            String[] splittedRow = row.split(";");
            requestCode = Integer.valueOf(splittedRow[0]);
            year = Integer.valueOf(splittedRow[1]);
            month = Integer.valueOf(splittedRow[2]);
            day = Integer.valueOf(splittedRow[3]);
            hour = Integer.valueOf(splittedRow[4]);
            minute = Integer.valueOf(splittedRow[5]);
            note = splittedRow[6];
            with = splittedRow[7];

            calendar.set(Calendar.YEAR, year);
            calendar.set(Calendar.MONTH, month);
            calendar.set(Calendar.DAY_OF_MONTH, day);
            calendar.set(Calendar.HOUR_OF_DAY, hour);
            calendar.set(Calendar.MINUTE, minute);
            calendar.set(Calendar.SECOND, 0);

            AlarmManager alarmManager = (AlarmManager) getSystemService(Context.ALARM_SERVICE);
            Intent alarmIntent = new Intent(this, AlarmReceiver.class);
            alarmIntent.putExtra("note", note + "\nCon: " + with);
            alarmIntent.putExtra("title", "My Memo");
            alarmIntent.putExtra("alarm", "memo");

            //requestCode must be incremental to create multiple reminders
            PendingIntent pendingIntent = PendingIntent.getBroadcast(this, requestCode, alarmIntent, 0);

            if (calendar.before(Calendar.getInstance())) {
                calendar.add(Calendar.DATE, 1);
            }

            alarmManager.set(AlarmManager.RTC_WAKEUP, calendar.getTimeInMillis(), pendingIntent);
        }

    } catch (IOException e) {
        e.printStackTrace();
    } finally {
        if (fileInputStream != null) {
            try {
                fileInputStream.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }
}

}

AlarmReceiver.java

public class AlarmReceiver extends BroadcastReceiver {

    @RequiresApi(api = Build.VERSION_CODES.O)
    @Override
    public void onReceive(Context context, Intent intent) {
        if (intent.getStringExtra("alarm").equals("memo")) {
            NotificationManager notificationManager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
            if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
                @SuppressLint("WrongConstant") NotificationChannel notificationChannel = new NotificationChannel("memo_channel", "My Memo", NotificationManager.IMPORTANCE_MAX);
                notificationChannel.setDescription("Memo Notification Channel");
                notificationChannel.enableLights(true);
                notificationChannel.setLightColor(Color.BLUE);
                notificationChannel.setVibrationPattern(new long[]{0, 1000, 500, 1000});
                notificationChannel.enableVibration(true);
                notificationManager.createNotificationChannel(notificationChannel);
            }
            NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(context, "memo_channel");
            notificationBuilder.setAutoCancel(true)
                    .setDefaults(Notification.DEFAULT_ALL)
                    .setWhen(System.currentTimeMillis())
                    .setShowWhen(true)
                    .setTicker("Reminder")
                    .setContentTitle("Memo")
                    .setContentText(intent.getStringExtra("note"))
                    .setContentInfo("Information")
                    .setSmallIcon(R.drawable.ic_alarm);

            notificationManager.notify(1, notificationBuilder.build());
        }
    }
}

BootAlarmReceiver.java

public class BootAlarmReceiver extends BroadcastReceiver {

    @RequiresApi(api = Build.VERSION_CODES.O)
    @Override
    public void onReceive(Context context, Intent intent) {
            Intent alarmServiceIntent = new Intent(context, AlarmService.class);
            ComponentName service = context.startService(alarmServiceIntent);

            if (service == null) {
                Log.e("ALARM", "Could not start service");
            } else {
                Log.e("ALARM", "Could start service");
            }
        }
    }
}

AndroidManifest.xml

<manifest>
    <application>
        <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
        <uses-permission android:name="android.permission.VIBRATE" />

        //Other code here

        <receiver
            android:name=".BootAlarmReceiver"
            android:enabled="true">
            <intent-filter>
                <action android:name="android.intent.action.BOOT_COMPLETED" />
            </intent-filter>
        </receiver>
        <receiver android:name=".AlarmReceiver" />
        <service android:name=".AlarmService" />
    </application>
</manifest>

[请帮助我,谢谢您的时间。

编辑

我在打开设备电源时发现此错误:

java.lang.RuntimeException: Unable to start receiver com.package.appname.BootAlarmReceiver: java.lang.IllegalStateException: Not allowed to start service Intent { act=REBOOT cmp=com.package.appname/.AlarmService }: app is in background uid UidRecord{a5a4cb2 u0a341 RCVR idle change:uncached procs:1 seq(0,0,0)}

我该怎么办?

java android service alarmmanager android-reboot
2个回答
0
投票

某些品牌正在使用额外的策略来加快启动和电池优化。例如,小米对此具有自动启动权限。如果您希望警报在重启后继续无间断地继续运行,则必须授予您该权限。 (设置/应用/您的应用/自动启动)。许多制造商都有这样的东西。

你能做什么?

您可以通过编程方式请求自动启动许可,也可以忽略电池优化许可。

https://stackoverflow.com/a/47307864/11982611

https://stackoverflow.com/a/49167712/11982611

https://stackoverflow.com/a/54325917/11982611

这些问题/答案会帮助您

编辑:您的日志说,您没有启动完成后启动服务的权限。

您必须在Google上搜索“如何在LG6中将您的应用列入白名单”和“如何获得LG的自动启动许可”。这个问题与品牌和设备有关。我无法确切地说出您应该做什么。

即使您说您检查了所有内容,权限也缺少某些内容


0
投票

SOLUTION:

[大家好,我发现了我遇到的问题,我的代码是正确的并且可以正常工作,问题出在我设备的OS中,从Android OS Oreo更改了启动服务的命令,并且需要新命令语法:

更改在“ BootAlarmReceiver.java”中

上一个代码:

public class BootAlarmReceiver extends BroadcastReceiver {

    @RequiresApi(api = Build.VERSION_CODES.O)
    @Override
    public void onReceive(Context context, Intent intent) {
            Intent alarmServiceIntent = new Intent(context, AlarmService.class);
            ComponentName service = context.startService(alarmServiceIntent);

            if (service == null) {
                Log.e("ALARM", "Could not start service");
            } else {
                Log.e("ALARM", "Could start service");
            }
        }
    }
}

新代码:

public class BootAlarmReceiver extends BroadcastReceiver {

    @RequiresApi(api = Build.VERSION_CODES.O)
    @Override
    public void onReceive(Context context, Intent intent) {
        if (Intent.ACTION_BOOT_COMPLETED.equals(intent.getAction())) {

            Intent alarmServiceIntent = new Intent(context, AlarmService.class);

            if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
                context.startForegroundService(alarmServiceIntent);
            } else {
                context.startService(alarmServiceIntent);
            }
        }
    }
}

因此,如果您在Oreo或更高版本上运行,则应使用.startForegroundService(yourIntent),否则应使用.startService(yourIntent)

此解决方案也应该对您有用。

© www.soinside.com 2019 - 2024. All rights reserved.