如何使用闹钟类设置闹钟
您好,我正在尝试使用 AlarmClock 类在我的应用程序中设置闹钟。我使用的代码如下:
Intent intent = new Intent();
intent.setAction(AlarmClock.ACTION_SET_ALARM);
startActivity(intent);
但我遇到了异常。谁能告诉我如何使用这个新的 Android 功能吗?
Hi I am trying to set Alarm in my application Using the AlarmClock class. 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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您还需要添加
到您的清单中。
You'll also need to add
to your manifest.
Ollie 是对的,代码应该如下所示:
Ollie is right, the code should look something like the following:
您需要指定设置闹钟的时间:
http://developer .android.com/reference/android/provider/AlarmClock.html
您要求 Android 设置闹钟而不告诉它何时,因此请为 Hour 和 AlarmClock 添加额外的意图捆绑参数。分钟后我预计它会起作用(很难确定,因为您没有提供有关异常的信息)。
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).