我需要一个 adb 命令来启用 android 辅助功能选项

Ama*_*eur 3 adb

我正在尝试启动语音访问,但我使用的手机没有辅助功能菜单,是否有直接的 adb 命令可以启动它?

小智 6

要启动辅助服务,您可以使用:

adb shell settings put secure enabled_accessibility_services com.google.android.marvin.talkback/com.google.android.marvin.talkback.TalkBackService
Run Code Online (Sandbox Code Playgroud)

并停止:

adb shell am force-stop com.google.android.marvin.talkback
Run Code Online (Sandbox Code Playgroud)