I'm writing my first Android app for a small business that has some Droid phones. I set up an AVD for the phone with the right resolution: 854 pixels high. I'm working on a MacBook Pro with a max screen resolution 900 pixels high. So when the emulator starts up, the bottom is cut off.

Is there a way to scale the emulator display down to 75% or something so that it fits on my screen? Any other solution (other than running everything on the phone itself)?

link|improve this question

Here's something that makes the emulator segfault :( macworld.com/article/142173/2009/08/scaleapps.html – Josh Lee Mar 1 '10 at 23:40
feedback

5 Answers

up vote 48 down vote accepted

From within Eclipse:

  1. Go to Window -> Android SDK and AVD Manager -> Virtual Devices
  2. Select the AVD you want to launch and click Start
  3. Check the "Scale display to real size" button
  4. Enter how big you want it to appear in inches and press Launch. For this to work, you'll have to also enter a reasonable approximation of your mac's screen resolution. I'm using 7 inches and 113 dpi for my 13" Macbook Pro, but you may be able to get away with 8 or 9 inches.
link|improve this answer
2  
This solution is temp. as you need to do so every time you launch eclipse. Walter Heck's solution is better. – Mina Samy Feb 14 '11 at 8:38
It depends, if you launch the emulator from Eclipse or the AVD Manager. Personnaly, I prefer this one because it explains the scale thing and it's from the AVD Manager – MrBuBBLs Nov 9 '11 at 18:28
feedback

This is actually possible from your project as well, no need to start the emulator through the AVD manager:

1) go to Run > Run Configurations... > (Select your application on the left hand side) > (Click the "Target" tab on the right hand side). 2) At the bottom there, you'll see 'Emulator launch parameters'. In the 'additional emulator command line options', add '-scale 0.75' (to make the screen 75% of full size)

Next time you start the emulator it will have scaled properly, hooray!

link|improve this answer
this answer is really good – Sergey Jul 20 '11 at 19:11
Exactly what I needed – MrVincenzo Aug 10 '11 at 16:22
Made my day thanks. – Ramesh Aug 27 '11 at 3:58
2  
If you can't see the 'Emulator launch parameters' try resizing the Run Configurations window as there may be hidden fields. – Chris Knight Oct 25 '11 at 22:11
try starting with 0.5 or something. the -scale parameter allows a number up to 3.0 to be entered. – AndrewPK Jan 9 at 22:37
feedback

There is also a way to re size the emulator through a windows command prompt.

  1. From command prompt run: telnet localhost 5554
  2. window scale 0.75
  3. quit

Assuming there is one emulator running with on port 5554.

link|improve this answer
1  
That is not the ID the emulator. It's the port you're connecting to. – Tempus Aug 13 '11 at 11:10
Awesome, thanks! Much easier than restarting the emulator over again – iWasRobbed Oct 17 '11 at 14:35
feedback

If you launch your emulator outside of Eclipse, using the android command, you will be able to scale the screen as part of the launch process. Not sure how to do that in Eclipse, though.

link|improve this answer
It's the same way, you have to launch the emulator prior to building, though (instead of having eclipse do it automatically) – synic Mar 1 '10 at 23:59
feedback

If you are working with Eclipse, than here's is what you can do if the size of the emulator is too big for you screen:

  1. Run > Run Configurations
  2. Pick the "Target" tab
  3. 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.

Enjoy

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.