Hi everyone,
I'm trying to get a response from a call via INTENT
the call seems to work but does not go through
Activity_OnResult
please,
How can I read the received message?
I'm trying to get a response from a call via INTENT
B4X:
Dim intent1 As Intent
intent1.Initialize("com.xxxxxx.action.xxxxxxxxxxx", "xxxxxxxxx://xxxxx.com/0/")
intent1.SetPackage("com.xxxxx.xxxxx")
intent1.AddCategory("android.intent.category.DEFAULT")
AU.startActivitywithResult(intent1)
B4X:
Sub Activity_OnResult(ResultCode As Int, ReturnIntent As Intent)
Log("result....:")
Log(ResultCode & " " & ReturnIntent.ExtrasToString)
If ResultCode = 0 Then Return
End Sub
the call seems to work but does not go through
Activity_OnResult
please,
How can I read the received message?
Last edited: