Android Studio图片资产中的圆形启动器图标

时间:2019-02-19 10:48:07

标签: android android-icons adaptive-icon

我注意到某些应用程序在任何设备上都具有圆形。

圆形图像

enter image description here

我希望我的应用程序也一样。但是,图像资产不允许为自适应图标选择透明背景。我试图将透明的png图像设置为背景,但它会填充设备上的black color

黑色图像

enter image description here

android清单:

<?xml version="1.0" encoding="utf-8"?>

<application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
    <activity android:name=".MainActivity">
        <intent-filter>
            <action android:name="android.intent.action.MAIN"/>

            <category android:name="android.intent.category.LAUNCHER"/>
        </intent-filter>
    </activity>
</application>

backgroud image

foreground image

如何为所有主题和设备制作cirlce图标?

1 个答案:

答案 0 :(得分:0)

制作一个带有透明背景的圆形图标。在drawable或mipmap中添加您的图标,然后在这两行中进行清单更改。您将可以使用各种设备和主题

 android:icon="@drawable/icon"
 android:roundIcon="@drawable/icon"