Application Skeleton to support multiple screens

后端 未结 2 1534
天命终不由人
天命终不由人 2020-11-22 05:38

As we know Android coming with various device which having different Features, Resolution, and Screen-size so while developing an Application which support multiple (small a

2条回答
  •  感情败类
    2020-11-22 06:07

    Designers should create base designs of

    base size of mdpi devices * density conversion factor of highest supported density bucket
    size.Base screen size is 320 X 480 px and density buckets are as follows:

    • ldpi: 0.75
    • mdpi: 1.0 (base density)
    • hdpi: 1.5
    • xhdpi: 2.0
    • xxhdpi: 3.0
    • xxxhdpi: 4.0

    And to tackle extra available space on Android devices should use stretchable components in both the directions (horizontally and vertically). Detailed info is available here:

    http://vinsol.com/blog/2014/11/20/tips-for-designers-from-a-developer/

提交回复
热议问题