I think that's correct. The warning indicates that you don't specify any minSdkVersion meaning it'll think your min support is 1, which doesn't support screen resolution scaling. So you run on newer platform in compatibility mode, letterboxed to the original HVGA res.
minSdkVersion or targetSdkVersion should be 4+ to specify your app can resize to new screen resolution. On Wed, Dec 15, 2010 at 10:53 AM, Kostya Vasilyev <[email protected]> wrote: > Good thing you made a screenshot of the entire Eclipse window, as I *think* > the answer is in the output window. > > Add this to the manifest: > > <uses-sdk android:minSdkVersion="4" android:targetSdkVersion="8"/> > > The "min" value should be at least 4 (can be higher, depending on your > needs), the "target" value can be anything above the min value. > > -- Kostya > > 15.12.2010 15:59, Bape пишет: >> >> Hello, >> >> I want to develop a application on Samsung Galaxy. >> The resolution is 1024 * 600 >> My mainlayout should look like this: >> >> http://office.techniconsulting.be/~peeters/eclipse_screenshot.jpg >> >> I've a left image (296 *600) and right image (728 * 600) as >> background. >> mail.xml looks like: >> >> <?xml version="1.0" encoding="utf-8"?> >> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/ >> android" >> android:orientation="horizontal" android:layout_height="600px" >> android:layout_width="1024px"> >> >> <LinearLayout android:id="@+id/LinearLayout01" >> android:background="@drawable/frame_left" android:gravity="left" >> android:layout_width="296px" android:layout_height="600px"></ >> LinearLayout> >> <RelativeLayout android:id="@+id/RelativeLayout01" >> android:gravity="right" android:background="@drawable/ >> frame_right_kelder" android:layout_width="728px" >> android:layout_height="600px"></RelativeLayout> >> </LinearLayout> >> >> >> Whwen I run it in the simulator it looks like: >> >> http://office.techniconsulting.be/~peeters/emulator_screenshot.jpg >> >> Is it not possible to work with pixel height en width in the emulator? >> >> > > > -- > Kostya Vasilyev -- WiFi Manager + pretty widget -- > http://kmansoft.wordpress.com > > -- > 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 > -- Xavier Ducrohet Android SDK Tech Lead Google Inc. Please do not send me questions directly. Thanks! -- 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

