屏蔽颜色的android(Masking color android)

2019-10-29 06:55发布

我想在Android的图像透明的,所以我做了一些研究,但得出的结论,我did'nt真正得到它。 所以我吸取了我的画布一对夫妇的位图,以及1种位图的我想使红色透明。 我发现了一段代码,但我并没有真正做任何事情。 这是我的代码:

if(PictureArray[a]==0){
                Paint Remove = new Paint();
                Remove.setARGB(255, 255, 0, 0);
                int removeColor=Remove.getColor();
                Remove.setAlpha(0);
                Remove.setXfermode(new AvoidXfermode(removeColor,0,AvoidXfermode.Mode.TARGET));
                c.drawBitmap(Stone, x, c.getHeight()/2, null);
            }

Answer 1:

使用透明的PNG。 无需overengineer它;)



文章来源: Masking color android