Thanks for the details. That sounds like a good explanation about what is happening. I'll implement the suggestions and see if that fixes things.
Justin On Tue, Jun 29, 2010 at 7:17 PM, Dianne Hackborn <[email protected]>wrote: > What do you mean by not scaling? As far as I know, the Streak is a medium > density device, so no graphics should be scaled. It does, however, have a > larger screen, so your app needs to explicitly say that it can handle that > or else it will be run in compatibility mode and not see the entire screen > space (and thus not break, as many 1.5 apps were wont to do). Declaring an > SDK version >= 4 implies that you know about larger screens so will get to > use the entire screen. > > > On Tue, Jun 29, 2010 at 12:44 PM, RichardC <[email protected] > > wrote: > >> Just tested my my app (built against 1.5) in my wifes Streak and it >> didn't scale. However the fix was.... >> >> to add >> <uses-sdk >> android:minSdkVersion="3" >> android:targetSdkVersion="4" /> >> >> <supports-screens /> >> >> to manifest.xml >> >> and change the build version properties to build against 1.6. >> >> This is now working. >> >> Hope this helps >> >> /Richard >> On Jun 29, 1:25 pm, Justin <[email protected]> wrote: >> > Has anyone had any problems with your graphics not properly scaling on >> > a 1.6 device, specifically the Dell Streak? I have a couple of >> > applications that were built against 1.5 and work great on other 1.5, >> > 1.6, and 2.1 devices, but I'm getting reports that the Dell Streak >> > isn't scaling the graphics appropriately. Any ideas as to what the >> > cause is? >> > >> > Little more info: >> > >> > I have the resources directories set up to work in an Android 1.5 >> > environment (ie: drawable, drawable-land, layout, layout-land, etc.). >> > >> > Thanks! >> > >> > Justin >> >> -- >> 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]<android-developers%[email protected]> >> For more options, visit this group at >> http://groups.google.com/group/android-developers?hl=en >> > > > > -- > Dianne Hackborn > Android framework engineer > [email protected] > > Note: please don't send private questions to me, as I don't have time to > provide private support, and so won't reply to such e-mails. All such > questions should be posted on public forums, where I and others can see and > answer them. > > -- > 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]<android-developers%[email protected]> > For more options, visit this group at > http://groups.google.com/group/android-developers?hl=en > -- 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

