davelt99 Member Licensed User Longtime User Mar 14, 2012 #1 I have a web view (wv1) that loads a web URL that contains a flash video file and player. All works well except that the only way to stop the video from playing is to turn off the phone. I have an Exit button that calls: wv1.StopLoading wv1.Enabled=False Activity.Finish Is there another way to remove the webview?? Thank you, Dave Tucker
I have a web view (wv1) that loads a web URL that contains a flash video file and player. All works well except that the only way to stop the video from playing is to turn off the phone. I have an Exit button that calls: wv1.StopLoading wv1.Enabled=False Activity.Finish Is there another way to remove the webview?? Thank you, Dave Tucker
NJDude Expert Licensed User Longtime User Mar 14, 2012 #2 You could load a blank content to the WebView, something like: B4X: webView1.LoadHTML("<html></html>") Upvote 0
You could load a blank content to the WebView, something like: B4X: webView1.LoadHTML("<html></html>")
davelt99 Member Licensed User Longtime User Mar 14, 2012 #3 That worked great, Thank You. Shoulda thought of that - been a long day... Thanks again. Upvote 0