Hi, I have built an application using android programming and I want to forward & sharing image from one application to other which was loaded from a remote url.
void onShareItem(View v) {
ImageView ivImage = (ImageView) findViewById(R.id.ivResult);
Uri bmpUri = getLocalBitmapUri(ivImage);
if (bmpUri != null) {
Intent shareIntent = new Intent();
shareIntent.setAction(Intent.ACTION_SEND);
shareIntent.putExtra(Intent.EXTRA_STREAM, bmpUri);
shareIntent.setType("image/*");