0

现在我有一个通过意图拍照的应用程序。拍完照片后,我希望用户能够确认它并将照片推送到另一个他们可以添加细节的活动。我正在努力寻找将照片从活动传递到活动的正确方法。

现在,确认照片会将用户带回主要活动。

这是我的相关代码:

主要活动

public void takePhoto(View view) {
    // create Intent to take a picture and return control to the calling application
    Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);

    fileUri = getOutputMediaFileUri(MEDIA_TYPE_IMAGE);
    Log.d("MySecondApp",fileUri.toString());// create a file to save the image
    intent.putExtra(MediaStore.EXTRA_OUTPUT, fileUri); // set the image file name

    // start the image capture Intent
    startActivityForResult(intent, CAPTURE_IMAGE_ACTIVITY_REQUEST_CODE);
}

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    if (requestCode == CAPTURE_IMAGE_ACTIVITY_REQUEST_CODE) {
        if (resultCode == RESULT_OK) {
            if (data!=null) {
            // Image captured and saved to fileUri specified in the Intent
            Toast.makeText(this, "Image saved to:\n" +
                     data.getData(), Toast.LENGTH_LONG).show();
            }
        } else if (resultCode == RESULT_CANCELED) {
            // User cancelled the image capture
        } else {
            // Image capture failed, advise user
        }
    }
}

/** Create a File for saving an image or video */
private static File getOutputMediaFile(int type){

    File mediaStorageDir = new File(Environment.getExternalStoragePublicDirectory(
              Environment.DIRECTORY_PICTURES), "MySecondApp");

    // Create the storage directory if it does not exist
    if (! mediaStorageDir.exists()){
        if (! mediaStorageDir.mkdirs()){
            Log.d("MySecondApp", "failed to create directory");
            return null;
        }
    }

    // Create a media file name
    String timeStamp = new SimpleDateFormat("yyyyMMdd_HHmmss").format(new     java.util.Date());
    File mediaFile;
    if (type == MEDIA_TYPE_IMAGE){
        mediaFile = new File(mediaStorageDir.getPath() + File.separator +
        "IMG_"+ timeStamp + ".jpg");
    } else if(type == MEDIA_TYPE_VIDEO) {
        mediaFile = new File(mediaStorageDir.getPath() + File.separator +
        "VID_"+ timeStamp + ".mp4");
    } else {
        return null;
    }

    return mediaFile;
}
4

3 回答 3

0

我会尝试类似的东西

if(resultCode == Activity.RESULT_OK)
    handleCameraPhoto(data);

处理方法:

private void handleCameraPhoto(Intent intent) {
    Bundle extras = intent.getExtras();
    Bitmap mImageBitmap = (Bitmap) extras.get("data");
    Intent intent = new Intent(this, NewActivity.class);
    intent.putExtra("BitmapImage", mImageBitmap);
    startActivity(intent);
}

然后,在您的其他活动中检索它

Intent intent = getIntent();
Bitmap bitmap = (Bitmap) intent.getParcelableExtra("BitmapImage");

并将其分配给您的 ImageView

ImageView iv = (ImageView)findViewById(R.id.myImageView);
iv.setImageBitmap(bitmap);
于 2013-04-25T18:49:36.097 回答
0

在新类中创建一个带有意图甚至图像的构造函数:

class newClass {
    public newClass(Intent intent){
        ...
    }
    ...
}

然后在这个新类中将意图设置为缩略图的大小,您可以在弹出窗口或类似内容中进行确认,然后在该类的页面上填写信息。这也会更好,因为如果他们想重拍照片,你可以参加这个课程,如果不接受,他们在拍完照片后会被带到另一张照片。

于 2013-04-25T18:25:54.890 回答
0

看看我写的这篇关于如何拍摄全尺寸图像和缩略图版本的博客文章:

将相机活动用于缩略图和全尺寸图像

完成后,您可以使用 getAbsolutePath()方法从文件实例中提取已保存文件的文件路径并将其传递给以下Activity.

于 2013-04-25T19:36:01.080 回答