The Code Whisperer
The Code Whisperer

Reputation: 1376

Android Studio Emulator in a Separate Window

I'm having a problem with my Android Studio. This is the first time that I installed Android Studio. The problem is that when I install any device it comes up with a grey background around the device or the emulator, I don't know if it has any thing to do with the latest Android Studio version, cause I have updated it, and the toolbar is at the top of the emulator instead of being at the top right of the device.

The first picture is how I want it to be, and the second picture is what appears when I open Android Studio and run my app on the device (emulator).

First Image Second Image

Upvotes: 113

Views: 71393

Answers (5)

user23627204
user23627204

Reputation: 1

To enable a frame around the Android emulator to make it look like a real device, do the following: Open the Virtual Device Manager in Android Studio -> choose your device and click "Edit this AVD" -> Show Advanced Settings -> Scroll down to Device Frame and choose a skin for your device -> Finish.

Upvotes: 0

Onik
Onik

Reputation: 19969

In the second picture you have the emulator floated or windowed:

enter image description here

In order to get the emulator in a "separate" window go to Preferences -> Tools -> Emulator and uncheck Launch in a tool window:

enter image description here

Here is the official documentation.

Upvotes: 218

Lara Amanj
Lara Amanj

Reputation: 15

To open the Android Studio emulator in a separate window, follow these steps:

1- Open Android Studio.
2- Go to File > Settings (Android Studio > Preferences on macOS).
3- Click Tools > Emulator.
4- Uncheck the Launch in a tool window checkbox.
5- Click OK.

Upvotes: 5

Erfan Eghterafi
Erfan Eghterafi

Reputation: 5635

Here is how to open the Android Studion Emulator in a separate window.

  • Open Settings from File -> Settings...
  • Select Tools -> Emulator and uncheck Launch in a tool window

Uncheck Launch in a tool window

Upvotes: 56

Yabaze Cool
Yabaze Cool

Reputation: 601

There is a better idea to open as it opens in an older version of Android Studio. enter image description here

If you open any project then close it. Open Virtual Device Manager.

enter image description here

It will look like this image enter image description here

If you run it before opening any project then you will get a separate window emulator as it looks earlier. It will behave like a separate application. If you close the Android studio also it will remain open. You can close it manually.

enter image description here

Upvotes: 10

Related Questions