我有一个应用程序拍摄照片并将图片内部存储在我创建的文件夹中。拍完照片之后,我希望能够访问它,以便我可以通过电子邮件发送它。如何访问刚拍摄的图像?下面是我拍摄照片后内部保存图像的代码:
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (resultCode == RESULT_OK) {
Bundle extras = data.getExtras();
bmp = (Bitmap) extras.get("data");
iv.setImageBitmap(bmp);
File storagePath = new File(
Environment.getExternalStorageDirectory() + "/DavePics/");
storagePath.mkdirs();
File myImage = new File(storagePath, Long.toString(System
.currentTimeMillis()) + ".jpg");
Bitmap b = Bitmap.createScaledBitmap(bmp, 320, 480, false);
try {
FileOutputStream out = new FileOutputStream(myImage);
b.compress(Bitmap.CompressFormat.JPEG, 80, out);
out.flush();
out.close();
} catch (Exception e) {
e.printStackTrace();
}
}
}
}
当我检查我创建的文件夹时,图片就在那里。我现在要做的是访问该图片,以便我可以通过以下代码发送电子邮件发送它:
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
switch (v.getId()) {
case R.id.bSendPic:
String emailaddress[] = { "info@sklep.com", "", };
Intent emailIntent = new Intent(Intent.ACTION_SEND);
emailIntent.putExtra(Intent.EXTRA_EMAIL, emailaddress);
//emailIntent.putExtra(android.provider.MediaStore.EXTRA_OUTPUT, pic);
emailIntent.setType("image/jpeg");
startActivity(Intent.createChooser(emailIntent, "Send Mail"));
break;
case R.id.ibTakePic:
i = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
startActivityForResult(i, cameraData);
break;
}
}
如何访问此图片以便将其添加到我的电子邮件意图中?我是以正确的方式来做这件事的吗?感谢
编辑:这是我的完整代码
public class Camera extends Activity implements View.OnClickListener {
ImageButton ib;
Button b;
ImageView iv;
Intent i;
final static int cameraData = 0;
Bitmap bmp;
File myImage;
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.photo);
initialize();
InputStream is = getResources().openRawResource(R.drawable.ic_launcher);
bmp = BitmapFactory.decodeStream(is);
}
private void initialize() {
ib = (ImageButton) findViewById(R.id.ibTakePic);
b = (Button) findViewById(R.id.bSendPic);
iv = (ImageView) findViewById(R.id.ivReturnedPic);
b.setOnClickListener(this);
ib.setOnClickListener(this);
}
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
switch (v.getId()) {
case R.id.bSendPic:
if (myImage.exists()) {
String emailaddress[] = { "info@sklep.com", "", };
Intent emailIntent = new Intent(Intent.ACTION_SEND);
emailIntent.putExtra(Intent.EXTRA_EMAIL, emailaddress);
emailIntent.setType("image/jpeg");
emailIntent
.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(myImage));
startActivity(Intent.createChooser(emailIntent, "Send Mail"));
}
break;
case R.id.ibTakePic:
i = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
startActivityForResult(i, cameraData);
break;
}
}
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (resultCode == RESULT_OK) {
Bundle extras = data.getExtras();
bmp = (Bitmap) extras.get("data");
iv.setImageBitmap(bmp);
File storagePath = new File(
Environment.getExternalStorageDirectory() + "/DavePics/");
storagePath.mkdirs();
myImage = new File(storagePath, Long.toString(System
.currentTimeMillis()) + ".jpg");
Bitmap b = Bitmap.createScaledBitmap(bmp, 320, 480, false);
try {
FileOutputStream out = new FileOutputStream(myImage);
b.compress(Bitmap.CompressFormat.JPEG, 80, out);
out.flush();
out.close();
} catch (Exception e) {
e.printStackTrace();
}
}
}
}
答案 0 :(得分:2)
您忘记的代码行是
emailIntent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(myImage));
在您的代码中,在您的活动中全局声明File myImage
现在发送电子邮件发送代码
检查文件是否存在,
if(myImage.exist())
{
String emailaddress[] = { "info@sklep.com", "", };
Intent emailIntent = new Intent(Intent.ACTION_SEND);
emailIntent.putExtra(Intent.EXTRA_EMAIL, emailaddress);
emailIntent.setType("image/jpeg");
emailIntent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(myImage));
startActivity(Intent.createChooser(emailIntent, "Send Mail"));
}