android icon适配最新版本

2019-11-04  本文已影响0人  今天天气很好我心情也很好

在网上找了多,今天发现一个坑,再一个8.0的华为手机上显示有问题,圆形图标中的icon放大了,被裁掉了。我是用的系统的new image assets 方式做的,分文没动。背景是个color,

解决办法是android:roundIcon="@mipmap/ic_launcher_round"这个地方对应的anydpi-v26里面的ic_launcher_foreground是对应的是mipmap,把所有对应的mipmap 从hdpi,mdpi,xhdpi,xxhdpi,xxxhdpi全部放到drawable中。

最后是这样的<?xml version="1.0" encoding="utf-8"?>

<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">

    <background android:drawable="@color/ic_launcher_background"/>

    <foreground android:drawable="@drawable/ic_launcher_foreground"/>

</adaptive-icon>

上一篇 下一篇

猜你喜欢

热点阅读