NotificationCompat.Builderによって作成された通知にどのようにサウンドを追加しますか? 私はresに生のフォルダを作成し、そこにサウンドを追加しました。それでは、通知にどのように追加するのですか?これは、私がここでの問題を推測している私の通知コード通知にサウンドを追加するには?
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]に[setSound](http://developer.android.com/reference/android/support/v4/app/NotificationCompat.Builder.html#setSound(android.net.Uri))メソッドがあります](http://developer.android.com/reference/android/support/v4/app/NotificationCompat.Builder.html)。それはあなたが探しているものですか? –