App声音调为最大

作者: i小灰 | 来源:发表于2022-03-16 14:43 被阅读0次
    //是否开启声音调为最大
    private static final boolean iSVolume = false;

        if (iSVolume) {
            try {
                AudioManager mAudioManager = (AudioManager) getSystemService(Context.AUDIO_SERVICE);
                int maxVol = mAudioManager.getStreamMaxVolume(AudioManager.STREAM_MUSIC);
                mAudioManager.setStreamVolume(AudioManager.STREAM_MUSIC, maxVol, AudioManager.FLAG_PLAY_SOUND);
            } catch (Exception e) {
                e.printStackTrace();
            }
        }

相关文章

网友评论

    本文标题:App声音调为最大

    本文链接:https://www.haomeiwen.com/subject/dgmmvltx.html