On Mon, Aug 13, 2012 at 7:58 AM, Tamás Barta <[email protected]> wrote: >> No. As I mentioned, the broadcast seems to be sent with only an action >> string, nothing else. > > With an uri: (com.android.camera.Util.java) > > public static void broadcastNewPicture(Context context, Uri uri) { > context.sendBroadcast(new > Intent(android.hardware.Camera.ACTION_NEW_PICTURE, uri)); > // Keep compatibility > context.sendBroadcast(new > Intent("com.android.camera.NEW_PICTURE", uri)); > }
Clearly, I am insufficiently awake. My apologies for screwing up yet again. You'll need to trace down who calls that to see whether that is a content:// Uri or a file:// Uri. I doubt that it would be anything else from a scheme standpoint. You might also hunt for apps that implemented receivers for the old undocumented com.android.camera.NEW_PICTURE broadcast and, if you find some, see how they did it. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _The Busy Coder's Guide to Android Development_ Version 4.0 Available! -- 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

