现在我有一个通过意图拍摄照片的应用。拍摄照片后,我希望用户能够确认并将照片推送到另一个可以添加详细信息的活动。我正在努力寻找将照片从活动传递到活动的正确方法。
现在,确认照片会将用户带回主要活动。
这是我的相关代码:
主要活动
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;
}
答案 0 :(得分:0)
在新类中创建一个带有intent或甚至图像的构造函数:
class newClass {
public newClass(Intent intent){
...
}
...
}
然后在这个新类中将意图设置为缩略图的大小,您可以在弹出窗口或类似内容中进行确认,然后在此类的页面上填写信息。这也会更好,因为如果他们想要重新拍摄这张照片,你可以拍摄这张照片,拍下照片后如果不被接受的话就去拍另一张照片。
答案 1 :(得分: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);
答案 2 :(得分:0)
看看我写的关于如何拍摄全尺寸图片和缩略图版本的博客文章:
Use Camera Activity for Thumbnail and Full Size Image
执行此操作后,您可以使用g etAbsolutePath()
方法从文件实例中提取已保存文件的文件路径,并将其传递给以下Activity
。