Different screen size layout

84 Views Asked by At

After reading AndroidDev: Supporting Multiple Screens, I still wondering on multi-screen support.

As document says:

  • res/layout/my_layout.xml // layout for normal screen size ("default")
  • res/layout-small/my_layout.xml // layout for small screen size
  • res/layout-large/my_layout.xml // layout for large screen size
  • res/layout-xlarge/my_layout.xml // layout for extra large screen size
  • res/layout-xlarge-land/my_layout.xml // layout for extra large in landscape orientation

I currently have such device support for development:

  • 3.7" 480 x 800
  • 4.0" 480 x 800
  • 4.3" 480 x 800
  • 4.3" 540 x 960
  • 4.7" 720 x 1280
  • 5.0" 1080 x 1920
  • 7.0" 600 x 1024 (Tablet)

Can anybody help me to figure out what layout folder will my device matched ?

0

There are 0 best solutions below