Xamarin.Android中的icon资源尺寸
2019-08-20 本文已影响3人
临岁之寒
在Xamarin.Android中,icon的相关资源应该放在mipmap文件夹中,其他的图片资源放在drawable文件夹中。现给出Xamarin.Android下各个mipmap文件夹的icon资源尺寸;
mipmap文件夹 | ic_launcher | ic_launcher_round | ic_launcher_foreground |
---|---|---|---|
mipmap-mdpi | 48*48 | 48*48 | 108*108 |
mipmap-hdpi | 72*72 | 72*72 | 162*162 |
mipmap-xhdpi | 96*96 | 96*96 | 216*216 |
mipmap-xxhdpi | 144*144 | 144*144 | 324*324 |
mipmap-xxxhdpi | 192*192 | 192*192 | 432*432 |