share

Android: Image gallery share to app

I've got an app that accepts images from the image gallery (via share menu). My app starts, and I do this: Bundle bundle = getIntent().getExtras(); Object obj = bundle.get("android.intent.extra.STREAM"); While debugging, Eclipse is reporting the object obj is of type 'Uri@StringUri' (???) and inside it somewhere is the string ...

How to exclude your own app from the Share menu?

The app has an intent filter to allow it to appear in the share menu in other applications via ACTION_SEND intents. The app itself also has a share menu using ACTION_SEND and createChooser(), and my app appears in the list. Since they are already in my app it seems strange to have them be able to share back to itself. Is there a way ...