移除 android 图标的绿色背景
Removing the green background for android icon
我是 android 开发的新手,刚刚创建了我的第一个应用程序。我选择了我的应用程序图标,但不知道为什么我保存的图像的背景显示为绿色,而原始图像却没有。有什么办法可以去除绿色背景。
以上是在android studio中选择后的图像。
如何去除绿色背景?
提前致谢
如果更换了ic_launcher_foreground.xml
改变图标,还需要去掉ic_launcher.xml
and/or下面的ic_launcher_round.xml
第三行[=16] =]
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@drawable/ic_launcher_background" />
<foreground android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>
无论如何,你看到的是/res/drawable/
中的ic_launcher_background.xml
。删除它,看看有什么问题并通过删除对已删除 xml.
的调用来修复它
代码结构
<?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"/> // this is background color
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
</adaptive-icon>
在您的项目目录 values/ic_launcher_background.xml
中找到颜色资源
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="ic_launcher_background">#00FF00</color> // change color using(#) like : #000000(black)
</resources>
我提到了黑色颜色代码,
您尝试根据 图标 . 更改颜色。
或者像这样使用透明色
<color name="ic_launcher_background">#0000ffff</color> // transparent background color
我是 android 开发的新手,刚刚创建了我的第一个应用程序。我选择了我的应用程序图标,但不知道为什么我保存的图像的背景显示为绿色,而原始图像却没有。有什么办法可以去除绿色背景。
以上是在android studio中选择后的图像。
如何去除绿色背景?
提前致谢
如果更换了ic_launcher_foreground.xml
改变图标,还需要去掉ic_launcher.xml
and/or下面的ic_launcher_round.xml
第三行[=16] =]
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@drawable/ic_launcher_background" />
<foreground android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>
无论如何,你看到的是/res/drawable/
中的ic_launcher_background.xml
。删除它,看看有什么问题并通过删除对已删除 xml.
代码结构
<?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"/> // this is background color
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
</adaptive-icon>
在您的项目目录 values/ic_launcher_background.xml
中找到颜色资源
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="ic_launcher_background">#00FF00</color> // change color using(#) like : #000000(black)
</resources>
我提到了黑色颜色代码, 您尝试根据 图标 . 更改颜色。
或者像这样使用透明色
<color name="ic_launcher_background">#0000ffff</color> // transparent background color