'Can't find stop button in Android Studio to stop the emulator
Solution 1:[1]
You can close the running Emulator by clicking the x
button at the top of the Emulator tab (see image below)
Solution 2:[2]
no stop button in bumblebee I also failed to find a way to stop it pressing the power button for long shows options lockdown poweroff and restart which in my case didnt work checked avd location lock file was created so finally killed it through taskmanager by ending qemu task
Solution 3:[3]
Print a list of your devices:
adb devices
Kill it using emu
adb -s emulator-5432 emu kill
Solution 4:[4]
I know of no other way than the command line, as @Tian said. Closing the emulator window has no effect as far as I know... To add more explanation:
open a terminal window (either the AS one or any other, as long as adb commands are available)
list the running connected devices with:
adb devices
identify your emulator in the resulting list (usually in the form of:
emulator-5556 device
)now kill the emulator with:
adb -s emulator-5556 emu kill
(replace the name of your own emulator in the command of course)You'll see a confirmation message like
OK: killing emulator, bye bye
enter code here
Solution 5:[5]
You can close the Emulator by clicking the X button at the top of emulator window. I found this answer on another stack overflow thread. There they've provided a complete explanation along with the original documentation. If you want you can check out that answer here
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | phentnil |
Solution 2 | tintin |
Solution 3 | Tian Welgemoed |
Solution 4 | Shiva |
Solution 5 | CypherZ |