Webview and Edittext view

tekh2999

Member
Licensed User
Longtime User
I'm trying to get my WebView to go to the URL typed in my EditText view after I press a button. I know in Visual Basic 2010 I type:

WebBrowser1.Navigate(TextBox1.Text)

How is this typed in BAsic4Android? can anyone Help? NOOB.
 

Cableguy

Expert
Licensed User
Longtime User
First of all, Questions and doubts should be posted in the Questions Forums

What you are looking for is this;
B4X:
WebView1.LoadURL(EditText.Text)
And it should be easely found with a small search in the WebViiew help
 

tekh2999

Member
Licensed User
Longtime User
Ok, Thank you, didn't see it before, will note next time. Thank you for your help.
 

tekh2999

Member
Licensed User
Longtime User
Yeah you would think such a simple thing to do. The only reason I ask is that I looked in the webview help and it list everything but this code even looked online and no code matching this. and if it is there it very well hidden.
 
Top