Android studio / eclipse emulator showing only part of the screen

Since the last package update, the Android Studio / Eclipse emulator shows only part of the screen.

enter image description here

How can I view the whole screen again?

Reinstalling Eclipse does not help.

+5
source share
2 answers

At first it seemed like a solution: creating a new virtual device in Android Studio solved the problem.

The same problem reappeared in Android Studio. I found a specific and simple solution. You can install it explicitly in the Android Studio AVD manager.

How? Launch Android Studio, Tools> Android> AVD manager. Then set the size and orientation of the launch. I changed it from β€œAuto” to below:

enter image description here

-1
source

Two different settings affect the display size of the virtual device. The actual size of the hardware screen of the particular emulated equipment (Nexus One, Nexus S, ...) and the scale factor used by the emulator when rendering this display on the screen of your computer. Both are properties of an Android virtual device, so reinstalling Eclipse will not change them, but you can edit them in the Android Virtual Device Manager or when you start your emulator.

If you run the emulator from the command line, the third paragraph of the command line help page describes how to change both settings.

If you run the emulator from Eclipse, you can see the launch configuration that you use to debug your application. At the very bottom, you can give the scaling factor and other properties as additional command line arguments. Make sure it is not installed.

If nothing still works, just create a new virtual device for your emulator in the Eclipse toolbar.

+4
source

Source: https://habr.com/ru/post/1232992/


All Articles