android studio中加载模拟器列表失败
2017-04-22 本文已影响0人
雪月青
环境:win10+as2.3
问题描述
在android studio中准备运行工程,加载模拟器列表时显示Nothing to show,多次尝试点击运行图标仍然如此,懵逼。。。
![](https://img.haomeiwen.com/i5748051/2be3f072eac51486.jpg)
解决方案
1.打开cmd;
2.查看哪个进程正在使用5037端口(5037端口是adb使用的端口);
netstat -aon | findstr "5037"
![](https://img.haomeiwen.com/i5748051/6e4ad79fd2b812fb.jpg)
3.杀死查到的进程;
taskkill /pid pid_number /f
![](https://img.haomeiwen.com/i5748051/dbc5590332bae071.jpg)
4.重新点击as中的运行图标,重启adb服务;
![](https://img.haomeiwen.com/i5748051/37d91ba15d0a7fa8.jpg)