C cloner7801 Active Member Licensed User Longtime User Apr 28, 2017 #1 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?
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?
Erel B4X founder Staff member Licensed User Longtime User Apr 30, 2017 #2 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) Upvote 0
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)
C cloner7801 Active Member Licensed User Longtime User Apr 30, 2017 #3 Erel said: 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) Click to expand... 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
Erel said: 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) Click to expand... 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
Erel B4X founder Staff member Licensed User Longtime User Apr 30, 2017 #4 Please create a small project that demonstrates these issues and upload it. Upvote 0