Android Question Buttons on screen after link is clicked

Stephen A Wolfe

Member
Licensed User
I've been searching around the forum and it looks like I need to use the following code, but the buttons remain.
B4X:
    Panel1.RemoveAllViews
    Panel1.Invalidate
    Activity.Invalidate

Is there an issue how I open the link?
B4X:
    Dim wvBrowser As WebView
    wvBrowser.Initialize("")
    Activity.AddView(wvBrowser, 0, 0, 100%x, 100%y)
    wvBrowser.LoadUrl("http://www.mysite.com")
 

Stephen A Wolfe

Member
Licensed User
I fixed this issue by trying different things. For those who run into the same issue, use:
B4X:
    Activity.RemoveAllViews
    Activity.Invalidate

This question is resolved.
 
Upvote 0
Top