代码位置:frameworks/base/services/core/java/com/android/server/audio/AudioService.java文章来源地址https://www.toymoban.com/news/detail-721588.html
@@ -712,6 +712,9 @@ public class AudioService extends IAudioService.Stub
}
}
+ // force music max volume
+ AudioSystem.DEFAULT_STREAM_VOLUME[AudioSystem.STREAM_MUSIC] = MAX_STREAM_VOLUME[AudioSystem.STREAM_MUSIC];
+
int maxAlarmVolume = SystemProperties.getInt("ro.config.alarm_vol_steps", -1);
if (maxAlarmVolume != -1) {
MAX_STREAM_VOLUME[AudioSystem.STREAM_ALARM] = maxAlarmVolume;
文章来源:https://www.toymoban.com/news/detail-721588.html
到了这里,关于Android-Framework 默认音乐音量最大的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!