0

I am trying to build a messaging app activity. I want to open the attached image in the messaging app but my messaging app is stopping. I have set all the required permissions. The following is my code:

    Intent sendIntent = new Intent(Intent.ACTION_SEND);
    sendIntent.putExtra("sms_body", "some text");
    Uri path = Uri.parse("android.resource://com.works.vipul.imageinmms/"R.drawable.images);
    sendIntent.putExtra(Intent.EXTRA_STREAM, path);
    sendIntent.setType("image/png");
    startActivity(Intent.createChooser(sendIntent,"Send"));
vipul bansal
  • 91
  • 1
  • 10

1 Answers1

1
com.works.vipul.imageinmms/" + R.drawable.images);

Add the "+". If that doesn't work, post a stack trace of the crash.

ipavl
  • 828
  • 11
  • 20