你如何改变声音的输出音量?

时间:2011-09-07 16:39:43

标签: android audio notificationmanager

我正在使用此代码播放声音。

我想让用户能够改变声音的音量。你能告诉我怎么做吗?

NotificationManager nm = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
Notification notification = new Notification();
notification.sound = Uri.parse("android.resource://emad/raw/quarter");

感谢。

诚然, 伊马德

1 个答案:

答案 0 :(得分:2)

使用

  notification.audioStreamType = AudioManager.STREAM_MUSIC;

  context.setVolumeControlStream(AudioManager.STREAM_MUSIC);