程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> audio-如何在 notification 上添加聲音?

audio-如何在 notification 上添加聲音?

編輯:編程綜合問答
如何在 notification 上添加聲音?

如何添加聲音到一個notification中,這個notification是通過NotificationCompat.Builder創建的。我在res中創建了一個原始文件夾,然後添加了聲音。那麼現在如何把聲音添加到notification中?
有關 Notification 代碼:

 int NOTIFY_ID=100;
    Intent notificationIntent = new Intent(this, Notification.class);
    PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, notificationIntent, PendingIntent.FLAG_CANCEL_CURRENT);

    NotificationCompat.Builder mBuilder =
            new NotificationCompat.Builder(this)
            .setContentIntent(pendingIntent)
            .setSmallIcon(R.drawable.notification)
            .setContentTitle("Warning")
            .setContentText("Help!")

    NotificationManager mgr = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
    mgr.notify(NOTIFY_ID, mBuilder.build());

最佳回答:


NotificationCompat.Builder mBuilder =
new NotificationCompat.Builder(this);
Notification notification = mBuilder.build();
notification.sound = Uri.parse("your path");

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved