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:

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