Oreo中的ic_launcher(API级别26)

时间:2018-07-26 06:17:49

标签: java android android-studio

我有一个问题!!!

为什么我的android项目在android 8(API 26)中丢失了启动器图标?:(

我的同事从 Git 获取项目,并且发生了此问题。

我尝试解决它,更改图标质量,清理并重建项目,然后...

请帮助我,我对这个问题不了解:|

API 26中的

project Launcher图标:
enter image description here

3 个答案:

答案 0 :(得分:0)

尝试一下:-

您需要手动定义启动器图标

.png中使用image Image Asset tool生成launcher icon

在您的manifest中,按照以下说明设置application icon

<application
    android:icon="@drawable/ic_launcher"
    android:roundIcon="@mipmap/ic_launcher_round">
</application>

还要确保ic_launcher文件夹中有drawable图标。

答案 1 :(得分:0)

还为应用添加了圆形图标
在mipmap中需要圆形图标 API 26中的项目启动器图标:

   <application
        android:icon="@mipmap/ic_launcher"
       android:roundIcon="@mipmap/ic_launcher_round"
    > </application>

enter image description here

答案 2 :(得分:0)

最好的方法是使用Legacy only

enter image description here

希望能帮到你