adb 查看系统设置参数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了adb 查看系统设置参数相关的知识,希望对你有一定的参考价值。
参考技术A -默认搜狗输入法C:\Users\Administrator>adb shell settings get secure default_input_method
com.sohu.inputmethod.sogouoem/.SogouIME
-默认为Appium使用中文输入时安装的输入法
C:\Users\Administrator>adb shell settings get secure default_input_method
io.appium.android.ime/.UnicodeIME
-put命令更改默认输入法(将 io.appium.android.ime/.UnicodeIME 改为 com.sohu.inputmethod.sogouoem/.SogouIME )
C:\Users\Administrator>adb shell settings put secure default_input_method com.sohu.inputmethod.sogouoem/.SogouIME
C:\Users\Administrator>adb shell settings get system screen_brightness_mode
1
C:\Users\Administrator>adb shell settings get system screen_brightness
30
C:\Users\Administrator>adb shell settings put system screen_brightness 150
C:\Users\Administrator>adb shell settings get system screen_off_timeout
15000
C:\Users\Administrator>adb shell settings put system screen_off_timeout 600000
C:\Users\Administrator>adb shell settings get global auto_time
1
C:\Users\Administrator>adb shell settings put global auto_time 0
以及获取、修改wifi状态(wifi_on)、飞行模式(airlpane_mode_on)等,这里也是appium中getNetworkConnection获得设备网络状态的方法。
adb shell content insert --uri content://settings/system --bind name:s:accelerometer_rotation --bind value:i:0
adb shell content insert --uri content://settings/system --bind name:s:user_rotation --bind value:i:1
i后面跟的不同的值代表旋转为不同的方向,取值范围为0,1,2,3
以上是关于adb 查看系统设置参数的主要内容,如果未能解决你的问题,请参考以下文章
adb shell settings 控制安卓系统设置(转)