What are Android different screens dimensions in dp for different screens (e.g. xlarge = 960dp x 720dp)?

Posted by Zizo on Stack Overflow See other posts from Stack Overflow or by Zizo
Published on 2012-10-21T10:24:35Z Indexed on 2012/10/21 11:00 UTC
Read the original article Hit count: 274

Filed under:
|
|
|
|

in this link: Range of screens supported, Android team mentioned that:

As you design your UI for different screen sizes, you'll discover that each design requires a minimum amount of space. So, each generalized screen size above has an associated minimum resolution that's defined by the system. These minimum sizes are in "dp" units—the same units you should use when defining your layouts—which allows the system to avoid worrying about changes in screen density.

  • 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

So, If I want to support all Android screens, can I create images, for full screen view, in those dimensions and that will be sufficient condition to support all available screens? or they are just the minimum sizes, and I need other dimensions?

If other dimensions are needed, Please list them as in the list above.

Thanks in Advance.

© Stack Overflow or respective owner

Related posts about android

Related posts about size