Android Screen Size Resolution
My app works perfectly in resolution 480x800. If I keep the 480x800 resolution but change the screen size to for example 2.7 inches, 3.7 inches or 5.4 inches it still is perfect. B
Solution 1:
I would really like to see some code.
If you use RelativeLayout
with attributes like android:layout_width
and android:layout_height
and specify values in dp (density pixels) e.g. android:layout_height="40dp"
it should work just fine.
Please try to share some code with us.
Solution 2:
Make sure that your assets that you have in your ldpi, mdpi, hdpi and xhdpi folders are scaled correctly to accommodate the diff. resolutions. I accidentally scaled some assets incorrectly, and although they were in the correct folders..gave me some bad results
http://developer.android.com/guide/practices/screens_support.html
Post a Comment for "Android Screen Size Resolution"