如何在Android studio中制作具有透明背景的图像资源? (使用选项添加图像资源)

时间:2017-07-28 08:27:58

标签: android android-studio

我有透明背景的图像。

当我将图像添加到资源文件夹时,我的背景变为白色。 (用android studio添加图像资产选项)

enter image description here

如果我将图像直接放到资源文件中,图像背景保持透明。

4 个答案:

答案 0 :(得分:0)

试试这个:

ImageView myImage = (ImageView) findViewById(R.id.myImage);
myImage.setAlpha(127); //value: [0-255]. Where 0 is fully transparent and 255 is fully opaque

答案 1 :(得分:0)

选择“操作栏和标签图标”而不是“启动器图标”,您将获得所有图片所需的透明背景。

答案 2 :(得分:0)

您可以通过以下操作轻松完成操作,顺便说一下,灰色圆圈是图像本身中的原始颜色。

enter image description here

它将为您创建这些

enter image description here

答案 3 :(得分:0)

选择

图标类型 ---> 仅旧版

形状->

如下

enter image description here