• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps How to display Custom camera image in other activity

Ali441

Lurker
Hi,

I can't display the custom camera image in other Activity.
I have an Activity called CamTestActivity for custom camera and this activity have onClick button .When click on this button display that image in other Activity called Imageset Activity, set that image in ImageView.

PLease help me..

Thanks
 
You can use Intent.putExtra(String name, Parcelable value) to put your Bitmap to Intent. Then pass it to android.content.Context.startActivity().
In second Activity call getIntent().getParcelableExtra(String name) to get the Bitmap.
 
There is also possibility to send Intent as lightweight app-wide broadcast with LocalBroadcastManager. It won't use Parcelable, thus no overhead on (de)serialization.
 
Back
Top Bottom