Mark wrote: > Hello everyone, > > > > I am new to android development. Why is it that the > screen looks great on a test avd but when I deploy the app to my Droid > everything is off and really small?
If your test AVD was HVGA resolution, you may need to tweak some of your techniques and assets to support WVGA854 resolution as well. See: http://www.androidguys.com/2010/02/16/handling-multiple-screen-sizes-part/ http://www.androidguys.com/2010/02/18/handling-multiple-screen-sizes-part-2/ http://www.androidguys.com/2010/02/23/handling-multiple-screen-sizes-part-3/ http://www.androidguys.com/2010/03/01/handling-multiple-screen-sizes-part-4/ http://www.androidguys.com/2010/03/02/handling-multiple-screen-sizes-part-5/ If your test AVD was WVGA854 resolution, bear in mind that your monitor's screen density is a whole lot lower than is your phone's, so the emulator will appear huge. There's a scale option you can use to fix that, at the cost of crispness of the emulator screen. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy Android Consulting: http://commonsware.com/consulting -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

