Android的时钟应用设置闹钟(Android Clock App Set Alarm)

2019-09-27 04:09发布

I need to know if this is possible, and if it is, how I should proceed.

I'd like to make an app that will create a repeating alarm within the stock Android Clock App. It should go off at 8am each morning and should only take one button to activate within my app.

Thanks in advance

Answer 1:

尝试这个:

public void createAlarm(String message, int hour, int minutes) {
    Intent intent = new Intent(AlarmClock.ACTION_SET_ALARM)
            .putExtra(AlarmClock.EXTRA_MESSAGE, message)
            .putExtra(AlarmClock.EXTRA_HOUR, hour)
            .putExtra(AlarmClock.EXTRA_MINUTES, minutes);
    if (intent.resolveActivity(getPackageManager()) != null) {
        startActivity(intent);
    }
}

来源: https://developer.android.com/guide/components/intents-common.html



文章来源: Android Clock App Set Alarm