Friend's I am very new to android,i developed an sample web application and hosted it apk build file in different android version and on different sized devices,here i am getting problem in my design of layout such as listview not being displayed properly bottom portion is not displayed well and the align is not so good.
Without an specific question, the best way to answer you is pointing you to the android guide: Supporting Multiple Screens.
hi, welcome to the android, same as i am new to android too.
You can make your application such that it looks same in different devices.. here is good reference given go through it ,it will help a lot http://developer.android.com/guide/practices/design/seamlessness.html
if u are using images use 9patch images..
Thanks rakesh
I recently came across a problem when creating my first game. After attempting to fix the issue of different screen sizes, I also realized you need to worry about pixel density as well. I'm not too sure what all you have being drawn to the screen but you can have those resized as needed to be the same ratio with the screen on any device. All you might have to do is add the following code to the manifest section of the Manifest:
<supports-screens
android:anyDensity="false"/>
This took care of my problem with different devices, I hope it works for you as well!