It is not a good idea to resize images in runtime for this purpose (unless image quality does not matter to your audience).
Android have specific guidelines for supporting multiple screens in a single application: This article contains all the information and guidelines for multiple screen support: http://developer.android.com/guide/practices/screens_support.html You may want to make the background images 9 patch images where possible. http://developer.android.com/guide/developing/tools/draw9patch.html If you really want to resize Images, here are two pointers: 1. The language is Java (Look for Java code to resize Image) 2. Read SDK documentation for Android ( http://developer.android.com/reference/packages.html) Good thing is that, they have implemented a search feature in the documentation. Regards Sarwar Erfan -- 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

