How can I retrieve an image from another Intent
within the same application?
If I understood you correctly you can use Intent.putExtra(String, Parcelable)
and Intent.getParcelableExtra(String)
methods to store and load image. But it's not very fast method. And if you need to transfer a large image, you'd better put it in a static field.
精彩评论