我正在使用此代码播放声音。
我想让用户能够改变声音的音量。你能告诉我怎么做吗?
NotificationManager nm = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
Notification notification = new Notification();
notification.sound = Uri.parse("android.resource://emad/raw/quarter");
感谢。
诚然, 伊马德
答案 0 :(得分:2)
使用
notification.audioStreamType = AudioManager.STREAM_MUSIC;
context.setVolumeControlStream(AudioManager.STREAM_MUSIC);