*
According to the note written in this documentation, the old groups are 
depecated (small, normal, large, and xlarge)*, thas why we have to migrate 
to new techique defined in Android 3.2

*
Note:* Beginning with Android 3.2 (API level 13), these size groups are 
deprecated in favor of a new technique for managing screen sizes based on 
the available screen width. If you're developing for Android 3.2 and 
greater, see Declaring Tablet Layouts for Android 
3.2<http://developer.android.com/guide/practices/screens_support.html#DeclaringTabletLayouts>for
 more information.


*My question is. How do we make diferent layout for small vs normal vs 
large screens in the new technique?. I try it and no find solutio, and I 
want to set a diferent layout for each one, and It said that is deprecated.*


*Old way clasification*

   - *xlarge* screens are at least 960dp x 720dp
   - *large* screens are at least 640dp x 480dp
   - *normal* screens are at least 470dp x 320dp
   - *small* screens are at least 426dp x 320dp

*
*

*New way*

   - 320dp: a typical phone screen (240x320 ldpi, 320x480 mdpi, 480x800 
   hdpi, etc).
   - 480dp: a tweener tablet like the Streak (480x800 mdpi).
   - 600dp: a 7” tablet (600x1024 mdpi).
   - 720dp: a 10” tablet (720x1280 mdpi, 800x1280 mdpi, etc).



   - *res/layout-sw320dp/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)*

















-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to