gpt4 book ai didi

android - 设置通知声音

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:44:18 25 4
gpt4 key购买 nike

如何为我的 Android 应用程序设置通知声音。在我的应用程序中,通知将在 30 秒后显示。我想为此警报提供选项,例如静音模式、振动模式和从设备的可用音调中选择的选项。我正在使用首选项屏幕来显示设置菜单。我想设置特定于应用程序的通知铃声类型。有没有办法建立这个..

最佳答案

如何为 Android 通知设置自定义声音

在您的 res/raw 目录中放置一个 .mp3 或 .wav 文件,例如下例中的“notification_sound.mp3”(文件名不能使用大写字母)。

在创建通知时设置 Notification.sound,如下所示:

final int iconResId = R.drawable.my_icon;
final int soundResId = R.raw.notification_sound;
final Notification notification =
new Notification(iconResId, tickerText, System.currentTimeMillis());
final String packageName = context.getPackageName();
notification.sound =
Uri.parse("android.resource://" + packageName + "/" + soundResId);

可选地,为您的通知添加振动:

notification.defaults = Notification.DEFAULT_VIBRATE;

关于android - 设置通知声音,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5139919/

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