Android Question StartActivityForResult two parameters

Status
Not open for further replies.

kkkpe

Active Member
Licensed User
Longtime User
how to pass multiple parameters to the startActivityForResult method?

REQUEST_CODE = 0x0000978c
startActivityForResult(intentSend , REQUEST_CODE)
 

cxbs

Active Member
Licensed User
Longtime User
try
B4X:
Type ParaAry(Par1 as string,Par2 as string,Par3 as int)

    Dim Para As ParaAry
    Para.Initialize
    Para.Par1="a"
    Para.Par2="b"
    Para.Par3=9"
    startActivityForResult(Para)
 
Upvote 0
Status
Not open for further replies.
Top