Android Question how to sent a question to a web server

gerredtor

Active Member
Licensed User
Use httpUtils:

B4X:
Dim hj As HttpJob
hj.Initialize("hj", Me)
hj.Download("URL")

and:

B4X:
Sub JobDone (Job As HttpJob)
If Job.Success Then
    yourstring = Job.getString
End if
End Sub
 
Upvote 0
Top