Is there a way to know if the user has chosen the intent action from the chooser or not.
I want to do this - If its chosen by user then finish the current activity else remain in the current activity.
I have this code:
startActivity(Intent.createChooser(email, "Choose an Email client :"));
finish();
But this always finishes the current activity irrespective of user chose the email client or not.
Any ideas?