0
A
回答
1
顯示一個通知,有聲的嘗試:
NotificationCompat.Builder mBuilder =
new NotificationCompat.Builder(this)
.setSmallIcon(R.drawable.notification_icon)
.setContentTitle("My notification")
.setContentText("Hello World!");
// Creates an explicit intent for an Activity in your app
Intent resultIntent = new Intent(this, ResultActivity.class);
// The stack builder object will contain an artificial back stack for the
// started Activity.
// This ensures that navigating backward from the Activity leads out of
// your application to the Home screen.
TaskStackBuilder stackBuilder = TaskStackBuilder.create(this);
// Adds the back stack for the Intent (but not the Intent itself)
stackBuilder.addParentStack(ResultActivity.class);
// Adds the Intent that starts the Activity to the top of the stack
stackBuilder.addNextIntent(resultIntent);
PendingIntent resultPendingIntent =
stackBuilder.getPendingIntent(
0,
PendingIntent.FLAG_UPDATE_CURRENT
);
mBuilder.setContentIntent(resultPendingIntent);
// to set custom sound
mBuilder.setSound(YOUR_CUSTOM_URI);
NotificationManager mNotificationManager =
(NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
// mId allows you to update the notification later on.
mNotificationManager.notify(mId, mBuilder.build());
更多關於設置聲音,看看here
相關問題
- 1. 設置通知的自定義聲音
- 2. 如何設置自定義聲音通知在Android的
- 3. 如何在本地通知聲音屬性上設置自定義聲音
- 4. 奇怪的聲音時設置自定義通知聲音的Android
- 5. APN自定義通知聲音問題
- 6. 推送通知的自定義聲音
- 7. 自定義通知聲音未播放
- 8. iOS推送通知自定義聲音
- 9. 自定義聲音的通知CeSetUserNotificationEx
- 10. 如何使用Apple推送通知播放自定義聲音?
- 11. 如何創建自定義聲音通知在Android的
- 12. 如何使用OneSignal發送自定義聲音推送通知?
- 13. 將通知聲音設置爲默認
- 14. 設置UILocal通知聲音設置大尺寸音樂文件
- 15. iOS定製聲音通知位置
- 16. 如何訪問默認iOS聲音以將其設置爲通知聲音?
- 17. Android通知聲音默認返回而不是播放自定義聲音
- 18. 用自定義聲音解析推送通知播放默認聲音
- 19. 咆哮窗口,自定義訂閱者 - 如何在代碼中設置通知屬性?例如聲音
- 20. 如何爲本地通知設置圖像和聲音?
- 21. iOS,Swift3)如何將通知聲音設置爲無線電流?
- 22. 如何在通知中設置振動和聲音
- 23. 聲音通知
- 24. 通知聲音
- 25. Android:自定義通知聲音不播放
- 26. GCM空中分機上的自定義通知聲音
- 27. 本地通知自定義聲音不在OS8.3之後播放
- 28. iOS下載自定義推送通知聲音
- 29. Swift 2.0問題顯示通知與自定義聲音文件
- 30. 使用離子推送通知的自定義聲音
你試過了什麼? – RvdK