Image is not attaching to SMS

115 views Asked by At

I am trying to share image and text via SMS. I am adding the image Uri but Image is not attached with SMS. What is wrong with my code please tell me Advance Thanks.

`Intent share = new Intent(Intent.ACTION_VIEW);
            share.setType("image/png");
            share.setData(Uri.parse("sms:"));
            share.putExtra(Intent.EXTRA_SUBJECT, subject);
            share.putExtra(Intent.EXTRA_TEXT, text);
            Uri uri=FileProvider.getUriForFile(getActivity(),getApplicationContext().getPackageName() + ".provider",file);
            share.putExtra(Intent.EXTRA_STREAM, uri);
            startActivity(share);
0

There are 0 answers