gpt4 book ai didi

android-alarms - 闹钟响起时如何播放默认手机铃声?

转载 作者:行者123 更新时间:2023-12-04 06:50:33 27 4
gpt4 key购买 nike

我已经编写了设置闹钟的代码。当时间结束时,我能够成功地从我的警报接收器类中举杯。

现在我想播放默认的手机铃声以及振动你的手机。
我怎么做

最佳答案

这是一个可以帮助您的示例

Notification notification = new Notification(icon, tickerText, when);
notification.setLatestEventInfo(context, contentTitle, contentText, contentIntent);
notification.defaults |= Notification.DEFAULT_SOUND;
notification.defaults |= Notification.DEFAULT_VIBRATE;
notification.defaults |= Notification.DEFAULT_LIGHTS;
notification.flags |= Notification.FLAG_AUTO_CANCEL;

notification.flags |= Notification.FLAG_SHOW_LIGHTS;
notification.ledARGB = 0xff00ff00;
notification.ledOnMS = 300;
notification.ledOffMS = 1000;

您需要为 list 文件添加振动权限。
<uses-permission
android:name="android.permission.VIBRATE"></uses-permission>

关于android-alarms - 闹钟响起时如何播放默认手机铃声?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3178404/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com