1

我有一个应用程序可以拍摄照片并将照片内部存储在我创建的文件夹中。拍完照片后,我希望能够访问它,以便我可以通过电子邮件发送它。如何访问我刚刚拍摄的图像?下面是我在拍摄照片后在内部保存图像的代码:

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();
        }

    }
}

}
4

1 回答 1

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"));
}
于 2012-08-29T13:35:48.467 回答