android调试桥: adb命令使用需要在系统环境遍历中path中追加adb.exe的完整路径D:\IDE\adt-bundle-windows-x86-20130729\sdk\platform-tools
adb devices 列出所有的设备 ---当adb.exe没有开启的时候,开启
adb start-server 开启adb服务 DDMS的reset是吧adb.exe杀掉再次开启
adb kill-server关闭adb服务
adb logcat 查看Log
adb shell 挂载到Linux的空间
$代表普通用户权限
ls ---查看当前文件夹
进入mnt目录
adb install <应用程序(加扩展名)> 安装应用程序
adb uninstall <程序包名>
多个虚拟机启动的时候安装:
adb pull <remote> <local> 文件
adb push <local> <remote> 存文件
emulator –avd <模拟器名称>
需要在path中配路径
ctrl + F11 横竖屏的切换