Gmailアプリケーションと画像の共有に問題があります。 これは私のコードです。Gmailアプリケーションと画像を共有できません。
Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND);
emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, getString(R.string.mail_subject));
emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, getString(R.string.mail_body));
emailIntent.putExtra(Intent.EXTRA_TITLE, getString(R.string.facebook_share_text));
//Download the image first
String location=downloadImage(true);
File root=android.os.Environment.getExternalStorageDirectory();
Log.e("send from where:","file:///"+root.getAbsolutePath()+"/"+location);
//Add attachment
emailIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse("file:///"+root.getAbsolutePath()+"/"+location));
emailIntent.setType("image/jpeg");
startActivity(Intent.createChooser(emailIntent, getString(R.string.share_by)));
デフォルトのメールアプリは、偉大な働いているFacebookで共有が動作するように偉大な、Gmailのアプリケーション縫い目が機能していますが、添付ファイルとして表示されているが、添付ファイルは、送信されていません。
ここにスクリーンショットがあります。
ので助けてください。