Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
How to get the user selection from startActivityForResult(Intent.createChooser(fileIntent, "Open file using…"), APP_PICKED);?

I have this code in my app:

String msg_subject = "Hi world";
String msgBody = "message body";

final Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("text/plain");
intent.putExtra(Intent.EXTRA_SUBJECT, msg_subject);
intent.putExtra(Intent.EXTRA_TEXT, msgBody);
startActivity(Intent.createChooser(intent, getString(R.string.share)));

And when I click in my button, I can see this dialog:

https://lh5.googleusercontent.com/-Mx6OniWqDGQ/Td4xlIUOP7I/AAAAAAAAADE/V1QjlD3z2Sc/share.jpg

I need to know what option choose the user in the right moment that the user tap in the phone screen

share|improve this question

marked as duplicate by Robert Harvey Sep 4 '11 at 0:50

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 2 down vote accepted

possible duplicate of How to get the user selection from startActivityForResult(Intent.createChooser(fileIntent, "Open file using..."), APP_PICKED);?

share|improve this answer
Uppsss... I sorry then. I going to see this answer. Thanks. – Jose Manuel May 26 '11 at 11:21
Oh, damn! It's true, and I can see this: No, you cannot find out what the user chose. – Jose Manuel May 26 '11 at 11:23

Not the answer you're looking for? Browse other questions tagged or ask your own question.