required resolution for images in android

Solutions on MaxInterview for required resolution for images in android by the best coders in the world

showing results for - "required resolution for images in android"
Donnie
25 Nov 2017
1Android: Background Image Size (in Pixel) which Support All Devices
2xxxhdpi: 1280x1920 px
3xxhdpi: 960x1600 px
4xhdpi: 640x960 px
5hdpi: 480x800 px
6mdpi: 320x480 px
7ldpi: 240x320 px
8For understanding multiple supporting screens you have to read http://developer.android.com/guide/practices/screens_support.html
9Android Devices Matrices:
10
11                            ldpi     mdpi     hdpi    xhdpi    xxhdpi      xxxhdpi
12Launcher And Home           36*36    48*48   72*72    96*96    144*144     192*192
13Toolbar And Tab             24*24    32*32   48*48    64*64    96*96       128*128
14Notification                18*18    24*24   36*36    48*48    72*72       96*96 
15Background                 240*320  320*480 480*800  768*1280  1080 *1920  1440*2560 
16