I have a grid of many products in my app. when the user selects one of the item in the grid, I am starting a new activity as DIALOG box and display the item\'s name,quantity
first you'll have to save your image first and then you can use this method to send the file name of your saved image
void Send() {
if (file != null) {
Intent intent = new Intent(this, Draw.class);
intent.putExtra(PICTURE_FILE_ID, file);
startActivity(intent);
} else if (file == null) {
Toast tst = Toast.makeText(getApplication(),
"Please Click Save First", Toast.LENGTH_SHORT);
tst.setGravity(Gravity.CENTER, 0, 0);
tst.show();
}
}
the other activity
use mBitmapFile = (File) getIntent().getSerializableExtra(
YourClassName.PICTURE_FILE_ID);