Uri uri = Uri.parse(\"content://media/external/images/media/23\");
Intent it = new Intent(Intent.ACTION_SEND);
it.putExtra(\"sms_body\", \"some text\");
it.putExtra(Intent.EXTRA_STREAM, uri);
it.setType(\"image/png\");
startActivity(it);
Intent it = new Intent(Intent.ACTION_SEND);
it.putExtra(\"sms_body\", \"some text\");
it.putExtra(Intent.EXTRA_STREAM, uri);
it.setType(\"image/png\");
startActivity(it);