5

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.

Patrick Jackson
  • 18,766
  • 22
  • 81
  • 141

1 Answers1

20

You should use this API of TextureView.

TextureView.setOpaque(false);

It works fine!

dragonfly
  • 1,151
  • 14
  • 35