Issue
In my android app development I have images with sizes 482x283 , 36x36, 48x48, 288x177 and 480x760 in "drawable-hdpi" folder what must be the sizes of these images for "drawable-mdpi", "drawable-xhdpi" , "drawable-xxhdpi" and "drawable-xxxhdpi" folders
Solution
hdpi = 1.5 * mdpi
xhdpi = 2 * mdpi
xxhdpi = 3 * mdpi
xxxhdpi = 4 * mdpi
Check Documentation for supporting different screen sizes
Answered By - thealeksandr
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.