Skip to content

Commit

Permalink
fix(android): support opacity properly (#3464)
Browse files Browse the repository at this point in the history
  • Loading branch information
hannojg committed Jan 10, 2024
1 parent b5ac4d6 commit 11e5b75
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,8 @@ private void updateSurfaceView() {
}
} else {
view = new TextureView(context);
// Support opacity properly:
((TextureView) view).setOpaque(false);
}
view.setLayoutParams(layoutParams);

Expand Down

0 comments on commit 11e5b75

Please sign in to comment.