【Monkey】如何杀掉正在运行的Android Monkey

  1. 通过adb shell monkey下发monkey自动化后
adb shell
ps -A | grep "com.android.commands.monkey" # 查看到PID
kill -9 <PID>  # 杀掉
  1. 通过adb命令,如果获得和设置android手机的音量
media volume:  the options are as follows: 
    --stream STREAM selects the stream to control, see AudioManager.STREAM_*
                    controls AudioManager.STREAM_MUSIC if no stream is specified
    --set INDEX     sets the volume index value
    --adj DIRECTION adjusts the volume, use raise|same|lower for the direction
    --get           outputs the current volume
    --show          shows the UI during the volume change
examples:
    adb shell media volume --show --stream 3 --set 11
    adb shell media volume --stream 0 --adj lower
    adb shell media volume --stream 3 --get

猜你喜欢

转载自blog.csdn.net/weixin_45329445/article/details/112908094