Android Question How to Create Rounded Video with Exoplayer?

hicaltech87

Member
Anyone know how to create rounded video with exoplayer?,
Just try using panel as parent for exoplayerview but still not rounded the video
 

Alexander Stolte

Expert
Licensed User
Longtime User
Just try using panel as parent for exoplayerview but still not rounded the video
try to put your "Parent" to "pnl".
B4X:
Dim jo As JavaObject = pnl
jo.RunMethod("setClipToOutline", Array(True))
pnl.SetColorAndBorder(pnl.Color,0,0,10dip)
 
Upvote 0
Top