2010/9/1 Christopher <[email protected]>: > What is the preferred method to send a drawable (like a bitmap) to > another activity (such as the Gallery app) then?
Keep it within your own application, using a Service or custom Application object or something. Then, display it in your own application. Or, store it on the SD card, and create an ACTION_VIEW Intent for the path to the file with the appropriate MIME type. You *might* be able to also store it as a local file, if you set it to be world-readable, and do the ACTION_VIEW Intent. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy Android App Developer Books: http://commonsware.com/books -- 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

