This question has been asked [numerous times] before, but I have not seen any definitive answers, or examples of code that actually works.
I have search Android docs and for some insane reason I am not able to find the list of all available intent filters.
I am trying to register my Activity so that it can be used by the Activity chooser/picker allowing a user to choose whether or not to select my application/Activity to complete what they are trying to
My app works with pictures. It can take multiple pictures as an input, process th开发者_StackOverflowem, and send them again to another app.
I want to use addIntentOptions to drive my menus when ever possible. This seems the cleanest way to provide them. Rather than explicitly detailing activities, simply ask for a menu listing all the act
I am wondering if it is possible to intercept an open application 开发者_如何学Pythoncall, for any(most of the) installed application. Or at least for opening the Activity having the intent-filter\'s
I have a custom file type/extension that I want to associate my app with. As far as I know, the data element is made for this purpose, but I can\'t get it working.
I would like to start my own SMS editor when user selects \"Send message\" from contacts application. How do I define intent in manifest file开发者_Go百科 to allow passing contact details to the edito
I tried using the following data in my intent filter: <data android:scheme=开发者_StackOverflow社区\"http\" android:host=\"an.example.i.p\" android:pathPrefix=\"t\" />
In my android app, I wanted to start an activity \'B\' from initial activity \'A\'. I have created classes for both of these. However when using following code to start B, I get a runtime error: appli