I want to pass an image from camera or gallery to show it another activity.In another activity i simply typecasted the image view object.but I failed every time. Sender activity here:
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if(requestCode==50 && resultCode==RESULT_OK && data != null){
Bitmap B=(Bitmap) data.getExtras().get("data");
}
else if(requestCode==40 && resultCode==RESULT_OK && data != null){
Bitmap B=(Bitmap) data.getExtras().get("data");
}
}