Android Question exoplayer with full screen

invocker

Active Member
how can play video in exoplayer with full screen

Capture d'écran 2025-10-07 124726.png like this Capture d'écran 2025-10-07 123023.png
 

Erel

B4X founder
Staff member
Licensed User
Longtime User
 
Upvote 0

invocker

Active Member
i fix it by adding Capture d'écran 2025-10-08 193102.png
B4X:
Dim jo As JavaObject = SimpleExoPlayerView1
    jo.RunMethod("setResizeMode", Array(2)) ' 0 = FIT, 1 = FIXED_WIDTH, 2 = FIXED_HEIGHT, 3 = FILL, 4 = ZOOM
or set it manually with change from fit to FIXED_HEIGHT
 
Upvote 0
Top