如何使用闹钟类设置闹钟

发布于 2024-10-17 09:43:57 字数 224 浏览 3 评论 0原文

您好,我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

痞味浪人 2024-10-24 09:43:57

您还需要添加

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

到您的清单中。

You'll also need to add

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

to your manifest.

一梦浮鱼 2024-10-24 09:43:57

Ollie 是对的,代码应该如下所示:

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

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);
生活了然无味 2024-10-24 09:43:57

您需要指定设置闹钟的时间:

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).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文