How to receive output data from an intent?

susu

Well-Known Member
Licensed User
Longtime User
I can call Contacts by using Intent object (Phone library).

B4X:
Intent1.Initialize(Intent1.ACTION_PICK,"content://contacts/people/")
StartActivity(Intent1)

But how to receive output data?
 

gorelshv

Member
Licensed User
Longtime User
i have a question about intents. is it possible to broadcast them? what i want to do is the same as using the following command on a pc:
B4X:
adb -d shell am broadcast -a <intent to broadcast here>
 
Last edited:
Upvote 0
Top