iOS Question control videoview

cloner7801

Active Member
Licensed User
Longtime User
Hi,

1. How can I control videoview done button ?
for example when click on done in fullscreen page, stop the videoview

2. And how can I play directly a url in videoview without adding to panel?
 

cloner7801

Active Member
Licensed User
Longtime User
1. You cannot control the done button. Currently no event is raised when it is clicked.

2. You must add it as a view. You can set it to be full screen with:
B4X:
Dim no As NativeView = VideoView1
no.GetField("player").SetField("fullscreen", True)
But when click on done , it play in background ... I hide the panel..
And in first time when click on button to play didn't play
 
Upvote 0
Top