ADB连接网易MuMu手机模拟器
-
ADB连接MuMu模拟器
adb connect 127.0.0.1:7555
-
ADB点击手机屏幕
adb shell input tap 500 600
其中500,600是模拟器屏幕坐标。在模拟器中打开 设置 >> 开发者选项 >> 指针位置,即可在手机上方看到坐标位置
-
在模拟器应用中的输入框输入文字
adb shell input text 100
在选中的输入框中输入100
-
点击模拟器中的删除键
adb shell input keyevent 112
112对应的是删除键,67对应的是退格键
-
屏幕截图保存为test.png,保存在模拟器 /sdcard/ 路径
adb shell screencap -p /sdcard/test.png
-
将 /sdcard/test.png 传到电脑 c:/pic/ 路径
adb pull screenca /sdcard/test.png C:/pic/