Android 屏幕尺寸对应文件夹
1 2 3 4 5 6
| HVGA : mdpi WVGA : hdpi FWVGA : hdpi QHD : hdpi 720P : xhdpi 1080P : xxhdpi
|
icon
1 2 3 4 5
| : 48x48 : 72x72 : 96x96 : 144x144 : 192x192
|
https://stackoverflow.com/questions/13639263/whats-the-correct-size-icon-for-drawable-xxhdpi
icon
名称 |
尺寸 |
位置 |
MDPI |
48x48 |
mipmap-mdpi/ic_launcher.png |
HDPI |
72x72 |
mipmap-hdpi/ic_launcher.png |
XHDPI |
96x96 |
mipmap-xhdpi/ic_launcher.png |
XXHDPI |
144x144 |
mipmap-xxhdpi/ic_launcher.png |
XXXHDPI |
192x192 |
mipmap-xxxhdpi/ic_launcher.png |
1 2 3
| mkdir res && cd res mkdir mipmap-mdpi mipmap-hdpi mipmap-xhdpi mipmap-xxhdpi mipmap-xxxhdpi ic_launcher.png
|