Dav*_*arl 11
将.mp3或.wav文件放在res/raw目录中,例如"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);
Run Code Online (Sandbox Code Playgroud)
(可选)在通知中添加振动:
notification.defaults = Notification.DEFAULT_VIBRATE;
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
15580 次 |
| 最近记录: |