adb 的 东西

adb shell screenrecord --size 1920x1080 按分辨率录制视频

getprop | grep soter* 查看tee

adb shell dumpsys SurfaceFlinger | grep fps  查看FPS 

adb shell
cd sys/class/leds/lcd-backlight 查看背光
cat brightness

adb shell am start -n com.android.settings/.DevelopmentSettings 掉开发者界面

/sys/bus/i2c/drivers/某个驱动  下面有驱动里面的属性可以cat  查看

adb shell cat /proc/pm_init/emi_speed_dump  //265078 265.078*4=1060.312MHZ  确定当前dram跑在哪个频率

3. 关于swipe同tap是一样的,只是他是模拟滑动的事件,给出起点和终点的坐标即可。例如从屏幕(250, 250), 到屏幕(300, 300)即
adb shell input swipe 250 250 300 300

原文地址:https://www.cnblogs.com/chjgongzuo/p/9855887.html