S susu Well-Known Member Licensed User Longtime User Dec 13, 2010 #1 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?
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?
agraham Expert Licensed User Longtime User Dec 13, 2010 #2 You can't yet. Erel says it will be in the next release http://www.b4x.com/forum/libraries-developers-questions/6860-problem-onactivityresult.html Upvote 0
You can't yet. Erel says it will be in the next release http://www.b4x.com/forum/libraries-developers-questions/6860-problem-onactivityresult.html
G gorelshv Member Licensed User Longtime User Dec 13, 2010 #3 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: Dec 13, 2010 Upvote 0
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>
Erel B4X founder Staff member Licensed User Longtime User Dec 14, 2010 #4 You can use the new Phone.Shell command to do it (haven't tried it myself). Upvote 0
G gorelshv Member Licensed User Longtime User Dec 14, 2010 #6 The Shell command works fine. Thanks. Upvote 0