TextureView with transparency

5.1k Views Asked by At

Is it possible to have a TextureView that has transparency, so that views below it (z-order) are visible?

IOW parts of the TextureView are transparent, and the view that the TextureView is on top of shows through.

1

There are 1 best solutions below

0
On

You should use this API of TextureView.

TextureView.setOpaque(false);

It works fine!