赞
踩
1、打开系统的原生的设置
adb shell am start com.android.settings/com.android.settings.Settings
2、重启一个应用
adb shell am force-stop 包名
3、设置镜像
adb shell
//镜像副驾
setprop debug.sf.multidisplay 2
//镜像仪表
setprop debug.sf.multidisplay 3
4、设置分辨率
// 1.不带display参数,默认注入到中控屏幕
adb shell input tap 1800 700
// 2.指定display为0,注入到中控屏幕
adb shell input tap 1800 700 --display 0
// 3.指定display为1,注入到副驾驶屏幕
adb shell input tap 1800 700 --display 1
5、设备可能有隐藏的应用,想要显示设备的全部应用
显示所有应用:
adb shell setprop debug.fuxi.showallapp true
adb shell pkill launcher
6.设置屏保时间:
adb shell settings put system fuxi_dream_off_timeout 2147483647
7.测试首次启动时间
adb shell am start -W com.fuuuuxi.filemanager/com.fuuuuxi.filemanager.MainActivity
8.adb logcat
通过字符过滤 adb logcat | grep MyApp //格式1:打印默认日志数据 adb logcat //格式2:需要打印日志详细时间的简单数据 adb logcat -v time //格式3:需要打印级别为Error的信息 adb logcat *:E //格式4:需要打印时间和级别是Error的信息 adb logcat -v time *:E //格式5:将日志保存到电脑固定的位置,比如D:\log.txt adb logcat -v time >D:\log.txt
7.当我们想要对上一次的提交进行修改时
https://www.jianshu.com/p/a8a2ac58f37d
git commit --amend
git push origin HEAD:refs/for/master
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。