[android-developers] How to get the user choice from 'Intent.createChooser'

2012-04-17 Thread Put_tiMe
I call 'Intent.createChooser' to let the user choose the app that he wants to use to do the necessary action. Is it possible to get what the user chose, before the user chosen app starts up. -- You received this message because you are subscribed to the Google Groups Android Developers group.

Re: [android-developers] How to get the user choice from 'Intent.createChooser'

2012-04-17 Thread Mark Murphy
On Tue, Apr 17, 2012 at 4:55 AM, Put_tiMe putt...@gmail.com wrote: I call 'Intent.createChooser' to let the user choose the app that he wants to use to do the necessary action. Is it possible to get what the user chose, before the user chosen app starts up. No, sorry. -- Mark Murphy (a

Re: [android-developers] How to get the user choice from 'Intent.createChooser'

2012-04-17 Thread Justin Anderson
You would have to write your own chooser... I have done this before when I wanted to create a chooser that would all the user to choose between taking a picture with the camera or choosing an existing picture from the gallery. I couldn't find a way to do that with the default chooser mechanism