3

I am using Eclipse for developing a new application, I have problem with screen size in the Android emulator. Even if I create a new emulator the screen size is zoomed in as shown. I can't re-size it. Even after searching it I can't find any solution for it.

Eclipse android emulator

Kapil
  • 83
  • 1
  • 10

2 Answers2

1
Run > Run Configurations
Pick the "Target" tab
Scroll down to "Additional Emulator Command Line Options" and put in: "-scale 0.7" or another number

This will keep the AVD scaled even if it is started automatically by Eclipse.
try this

Shvet Chakra
  • 1,043
  • 10
  • 21
0

You can't resize the emulator like you do with a window. Instead, you can scale it in the AVD set up or via adb command. You can see it on the next screen (Launch Options) after you click the start button of an AVD. See How to resize the AVD emulator in Android Studio?.

Community
  • 1
  • 1
Yangfan
  • 1,866
  • 1
  • 11
  • 13