Showing posts with label Android high definition. Show all posts
Showing posts with label Android high definition. Show all posts

Saturday, 18 January 2014

Andriod Development Multi screen support

As Android is a big fragments and also there are number of manufactures, which results into number of screens, which varies from manufactures to manufactures and device to device. Its the responsibility of Android developer to his app responsive, here is the collection of drawable folders which are specific to support particular screens.

Here is the demonstration to how to develop multi screen application for your project.




Few of the drawable folders are as follows

  1. drawable
  2. drawable-ldpi
  3. drawable-mdpi
  4. drawable-hdpi
  5. drawable-xhdpi
  6. drawable-xxhdpi
  7. drawable-large-mdpi
  8. drawable-large-hdpi
  9. drawable-xlarge-mdpi
  10. drawable-xlarge-hdpi

drawable
Common image folder to support all screens


drawable-ldpi
for small screens


drawable-mdpi
for medium screen phones


drawable-hdpi
for high definition screen phones


drawable-xhdpi
for very high definition screen phones


drawable-xxhdpi
for very high definition devices


drawable-large-mdpi
for 7" tablets


drawable-large-hdpi
for 7" tablets (Specially for Nexus7)


drawable-xlarge-mdpi
for 10" tablets

drawable-xlarge-hdpi
for 10" tables high resolution

so keep images in each folder & check what your device supports, happy designing.