I use webview in my app. But end of the url is variable. I put + between them but it didn't work. What should I do?
B4X:
Sub BtnMessage_Click
NavControl.ShowPage(Page5)
Dim Url As String
Url = "http://www.xxx.com/yyy" + TextFieldUser.Text
WebView5.LoadUrl(Url)
End Sub