I am using the following code:
Intent i = new Intent(Intent.ACTION_SEND);
i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
i.setType("image/*");
i.putExtra(Intent.EXTRA_SUBJECT, "caption");
i.putExtra(Intent.EXTRA_STREAM, Uri.parse("file:///android_assets/html5_low.jpg"));
i.putExtra(Intent.EXTRA_TEXT, "caption");
i.putExtra("sms_body", "caption");
startActivity(Intent.createChooser(i , "Share"));
However, it will show an error, something like "error occured while loading the photo". Why could this be? Has anyone seen this problem? Please help me!