android使用adb开启无障碍的方式

为方便调试,直接命令行进入设置无障碍,这最大程度的提高开发效率:

adb shell am start -a android.settings.ACCESSIBILITY_SETTINGS

如果在代码中引用该字符串,可以这么直接指向字符串的位置:

android.provider.Settings.ACTION_ACCESSIBILITY_SETTINGS

关于全部系统设置的intent,全都在类android.provider.Settings中。

你可能感兴趣的:(android,android,studio,android-studio)