Android 应用启动时去掉应用图标

在manifest文件的application标签中添加主题。

android:theme="@style/WindowTheme.NoTitleBar.CustomBackground"

主题在styles.xml文件中定义如下:

<style name="WindowTheme.NoTitleBar.CustomBackground" parent="@android:Theme.Black">  
        <item name="android:windowBackground">@drawable/background</item>  
        <item name="android:windowNoTitle">true</item>  
        <item name="android:windowFullscreen">false</item>  
        <item name="android:windowContentOverlay">@null</item>
    </style>

原文地址:https://www.cnblogs.com/meizixiong/p/2956234.html