We want to make our application integrate correctly with the "Share" features on applications like Gallery and the Browser.
Following the advice the appears elsewhere on this list we've added the entry in our manifest: <intent-filter android:icon="@drawable/icon" android:label="@string/ app_name"> <category android:name="android.intent.category.DEFAULT" /> <action android:name="android.intent.action.CHOOSER"/> <action android:name="android.intent.action.SEND" /> <category android:name="android.intent.category.ALTERNATIVE" /> <category android:name="android.intent.category.SELECTED_ALTERNATIVE"/ > <category android:name="android.intent.category.DEFAULT"/> <data mimeType="image/*"/> <data mimeType="text/plain"/> </intent-filter> The problem is, instead of having our application listed next to GMail and other standard Apps under the heading "Share picture via". A new dialog box appears which lists our application under the heading "Complete action using" along with "Android System" Clicking on our application name works fine. Clicking on "Android System" presents the standard list of intents. I've downloaded other non-standard apps and they also appear correctly in the "Share picture via" list. Is there a trick to getting the application to appear under the standard menu? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~----------~----~----~----~------~----~------~--~---

