2

I am tring achive overlay blend (like photoshop)in my android application. I have tried differnt PorterDuff.Modes (i.e. SCREEN, MYLTIPLY etc) with differnt combinations but could not achive the perfect overlay effect. Is there a way to achive effect?

1 Answers1

0

You can use PorterDuff overlay Mode as i shown below. It will work on the API level 11 or higher.

 Compose.setXfermode(new android.graphics.PorterDuffXfermode(Mode.OVERLAY));
Abhishek Agarwal
  • 1,907
  • 12
  • 21