Android禁用HDMI CEC控制

问题描述:

如何通过adb外壳关闭HDMI CEC控制?Android禁用HDMI CEC控制

enter image description here

adb shell settings put global hdmi_control_enabled 0 

无论如何,你可以使用模拟按键序列Menu-> ... ->CEC Control menu item选择恰好为您的设备:

adb shell input keyevent <key_event_code_for_menu> 
adb shell input keyevent <key_event_code_for_down> 
etc. 

,例如.bat文件。您可以从Official Documentation获得的关键事件代码。也请看Rene Barbosathis答案。