は、私がイメージをキャプチャし、電子メールで送信するアプリケーションを作成しようとしている、私は成功し、次のコードメールで画像を送信するには、Android?
String path = Images.Media.insertImage(getContentResolver(), bmp,"title", null);
Uri screenshotUri = Uri.parse(path);
Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND);
emailIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
emailIntent
.putExtra(android.content.Intent.EXTRA_EMAIL, emailAddresses);
emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, subject);
emailIntent.putExtra(Intent.EXTRA_STREAM, screenshotUri);
emailIntent.setType("image/png");
startActivity(Intent.createChooser(emailIntent, "Send email using"));
ことによってそれを作ったが、画像は小さなサイズで送信され、非常に低い解像度?!実際のサイズと解像度の画像を送るための提案はありますか?または、ビットマップの代わりにカメラの結果からjpegイメージを取得する他の方法はありますか?事前に
おかげ
http://stackoverflow.com/questions/2518055/image-attachment-to-a-mail-how-in-android – waqaslam