开发者

How to set Alarm using alarm clock class

Hi I am trying to set Alarm in my application Using the AlarmClock class.开发者_Go百科 I am using the code as follows:

 Intent intent = new Intent();
 intent.setAction(AlarmClock.ACTION_SET_ALARM);
 startActivity(intent);

But I am getting an exception. Can anyone please tell how to use this new Android feature?


You'll also need to add

<uses-permission android:name="com.android.alarm.permission.SET_ALARM"/>

to your manifest.


Ollie is right, the code should look something like the following:

Intent i = new Intent(AlarmClock.ACTION_SET_ALARM);
    i.putExtra(AlarmClock.EXTRA_HOUR, 9);
    i.putExtra(AlarmClock.EXTRA_MINUTES, 37);
    startActivity(i);


You need to specify the time when the alarm is being set for:

http://developer.android.com/reference/android/provider/AlarmClock.html

You're asking Android to set an alarm without telling it when, so add extra intent bundle parameters for Hour & Minutes and then I expect it will work (it is hard to be sure as you've provided no information about the exception).

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜