透明的PNG图像看起来不太好看

Kma*_*man 3 mobile png transparency android image

我的图像周围有一个相当大的阴影,背景是透明的.我已将其保存为来自photoshop的PNG文件,并在ImageView中通过xml使用它.这导致阴影具有条带效果,并且看起来不太好看.不太清楚做什么......

pec*_*eps 8

只需添加

// set 32 bit window (draw correctly transparent images)
getWindow().getAttributes().format = android.graphics.PixelFormat.RGBA_8888;
Run Code Online (Sandbox Code Playgroud)

在onCreate(...)

http://www.curious-creature.org/2010/12/08/bitmap-quality-banding-and-dithering/