最新回答 / qq_或許該懂了_0
加多个参数就行了,例如adb shell monkey -v -p com.android.calculator2 -s 100 --pct-touch 100 100
2018-02-23
已采纳回答 / amttpeter
grep不是adb的命令,应该是shell下的命令,你可以这样试一下:adb shell "logcat | grep START"我工作过程中的安卓设备用上面的命令还会提示不是内部命令,这时就必须使用busybox工具箱:adb shell "logcat | busybox grep START"我想,对你来说这些应该够用的了。
2018-01-30
最赞回答 / 慕仰6019129
adb shell "logcat | grep START" 或者adb shell "logcat | findstr START" 均可以
2017-11-13