The use of: Intent.createChooser
Hi,
in chapter 8, sending an email code ends with this line:
startActivity(Intent.createChooser(emailIntent, "Email"));
I changed this line to:
startActivity(emailIntent);
I got the same results.
I am wondering why using Intent.createChooser?
Regards
|