1. adb shell wm size 查看屏幕分辨率
2. adb shell wm density 查看屏幕密度
3 . adb shell ->su ->
3.1 mount -o remount,rw -t yaffs2 /dev/block/mtdblock3 /system 使系统不可写文件变为可写
3.2 mount -o remount,ro -t yaffs2 /dev/block/mtdblock3 /system 使系统文件变为不可写
4. sqlit3 进入sqlite数据库
5.打开系统设置
adb shell am start -n com.android.settings/.Settings
6.打开飞行模式:
adb shell settings put global airplane_mode_on 1
7.关闭飞行模式
adb shell settings put global airplane_mode_on 0