Skip to content Skip to sidebar Skip to footer

How To Know Which Application The User Chose When Using An Intent Chooser?

I'm using an intent chooser to invite friends : Intent intent = new Intent(Intent.ACTION_SEND); intent.setType('text/plain'); intent.putExtra(Intent.EXTRA_SUBJECT, Resources.getSt

Solution 1:

As far as I know, there is no direct way to gather such information. What would you need it for? Imho the android intent system was designed so you, as an app developer, don't have to worry about what app the user chose to handle your intent.


Post a Comment for "How To Know Which Application The User Chose When Using An Intent Chooser?"