how to remove emulator from tool window android studio

Viewed 15893

for the new android version 4.1 or newer, we can run the emulator directly to the android studio tool window. it's good. so I add an emulator there, but I face some problems seeing this full screen of the emulator if I open logcat. so, now I want to remove the emulator from there. (i am unable to find out this setting, that where we remove this connection form directly show in android studio).

see this image,(it helps you to get my question proper)

again, in short, I want to remove the emulator tool window from my android studio. (i want to directly open this in the default way, where i will able to use emulator without showing inside of android studio)

enter image description here

4 Answers

go to File -> Setting -> tools -> Emulator and uncheck the checkbox (Launch in tool window) and apply changes. That's it. and restart your emulator

For Windows,

Step 1 : File -> Setting -> Tools -> Emulator Just uncheck the checkbox of "Launch in tool window" & click on Apply at right bottom & restart Emulator again.

For Mac OS,

Step 1 : Android Studio -> Preference -> Tools -> Emulator Just uncheck the checkbox of "Launch in tool window" & click on Apply at right bottom & restart Emulator again.

If still emulator is in Tool Window then first you need to stop running emulator in Tool Window.

For stop emulator,

Step 2 Open AVD Manager -> Choose down arrow of your selected emulator -> click on "Stop".

Just verify Step 1 before running your application again. Now you have to run your application.

Step 1 : Android Studio -> Preference -> Tools -> Emulator Just uncheck the checkbox of "Launch in tool window" & click on Apply at right bottom & delete your emulator & create a new emulator

Related