Android shortcut bitmap launcher icon size

前端 未结 3 1220
感情败类
感情败类 2021-01-22 02:41

I have problems to find out the correct launcher icon size for my shortcut.

On my Nexus 7.2 the value of android.R.dimen.app_icon_size (see code) is 96 pixels. But if I

3条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-01-22 03:01

    If you notice in the android res folder - there should be several drawable folders

    drawable hdpi , drawable mdpi, drawable ldpi and so on each folder has designated images for each device, because each device shows images according to screen density, some devices have low density, and some have high density

    which is why on one device your icon size is 96 px, and on another it is 72

    the older and smaller devices are even 48 and 36

    in order to fix the problem, you just have to populate the appropriate drawable folders, with the right size icon file, and then you wont have a problem

    for more info, read this : Supporting multi screens in android

提交回复
热议问题