Skip to content Skip to sidebar Skip to footer

Positioning Starting Location Of Android Virtual Device

I am trying to position the emulated phone in Android Studio virtual device. Launching the Nexus S API 21 virtual device, places the emulation at the top of top of the screen and

Solution 1:

You can resize your Android Emulator by connecting to it via telnet:

$ adb devices
List of devices attached
emulator-5560 device

$ telnet localhost 5560
Connected to localhost.
Escapecharacteris'^]'.
Android Console: type 'help'for a list of commands
OK
window scale 0.75
OK

Solution 2:

I found an answer on this website by rephrasing the question in a google search:

Press the Alt-Space keys and you should get the window with the option allowing you to move the emulator window. Then move it e.g. using keyboard arrows. It works for me on Windows 7. Credit goes to JeriB on April 9

Post a Comment for "Positioning Starting Location Of Android Virtual Device"