I have developed an Android application targeting Android 2.2 now I want to make it compatible with Android 3.2 I am facing the following interface differences between these two apps
etc ... etc
please help
For Android 3.2 use <resource>-sw600dp
e.g drawable-sw600dp
and values-sw600dp
with combination of
res/layout/main_activity.xml
# For handsets (smaller than 600dp available width)
res/layout-sw600dp/main_activity.xml
# For 7” tablets (600dp wide and bigger)
res/layout-sw720dp/main_activity.xml
# For 10” tablets (720dp wide and bigger)
Here is reference: Supporting Multiple Screens