1

使用有线耳机时如何禁用平板电脑上的 HDMI 音频输出。我会尝试

mgr = (AudioManager) context.getSystemService(Context.AUDIO_SERVICE);
mgr.setWiredHeadsetOn(true);

mgr = (AudioManager) context.getSystemService(Context.AUDIO_SERVICE);
mgr.setParameters("audio_devices_out_active=AUDIO_CODEC");

它没有工作:'(

4

1 回答 1

0

尝试在您的清单中使用此权限。

android.permission.MODIFY_AUDIO_SETTINGS。

于 2014-02-13T17:06:24.763 回答