我需要使用相机意图一次拍摄多张照片。用户将按下应用程序中的按钮,然后将使用相机应用程序。用户将拍摄多张照片。当用户返回主应用程序时,我需要将这些照片存储在单独的目录中。
据我所见,INTENT_ACTION_STILL_IMAGE_CAMERA
是最好的意图。是否可以为摄像机目标指定目录,以便摄像机将所有新照片(直到用户返回主应用程序)存储到该目录?这类似于使用ACTION_IMAGE_CAPTURE
指定EXTRA_OUTPUT
的文件路径。
答案 0 :(得分:2)
编辑:误读哪个意图有问题。
INTENT_ACTION_STILL_IMAGE_CAMERA不接受任何论点;你不能给它一个目录来保存图像,或其他任何东西。它只是设计用于启动默认的相机应用程序,就像点击应用程序的主要启动图标一样。
小部件,锁定屏幕或其他类似功能通常用于启动相机。
还有ACTION_IMAGE_CAPTURE,它以特殊模式启动相机应用程序,拍摄单张照片然后返回到请求应用程序。在那里,可以提供文件的目的地。但是这种捕捉意图不是为一次拍摄多张照片而设计的。
您需要在循环中调用此意图,或者您需要构建自己的相机捕获活动。
答案 1 :(得分:-1)
首先,将图像存储为ArrayList
,然后为这些图像和GridView创建ImageAdapter。其次,在GridView上设置setOnItemClickListener
。
第三,创建Intent
以启动ImageViewActivity(或您喜欢的任何名称),然后执行intent.putExtra(EXTRA_RES_ID)
这些图像(图像的ID)。最后,startActivity(intent)
。
或者,根据developer.android.com,
以下是使用日期时间戳为新照片返回唯一文件名的方法中的示例解决方案:
String mCurrentPhotoPath;
private File createImageFile() throws IOException {
// Create an image file name
String timeStamp = new SimpleDateFormat("yyyyMMdd_HHmmss").format(new Date());
String imageFileName = "JPEG_" + timeStamp + "_";
File storageDir = getExternalFilesDir(Environment.DIRECTORY_PICTURES);
File image = File.createTempFile(
imageFileName, /* prefix */
".jpg", /* suffix */
storageDir /* directory */
);
// Save a file: path for use with ACTION_VIEW intents
mCurrentPhotoPath = image.getAbsolutePath();
return image;
}
使用此方法可以为照片创建文件,您现在可以像这样创建和调用Intent:
static final int REQUEST_TAKE_PHOTO = 1;
private void dispatchTakePictureIntent() {
Intent takePictureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
// Ensure that there's a camera activity to handle the intent
if (takePictureIntent.resolveActivity(getPackageManager()) != null) {
// Create the File where the photo should go
File photoFile = null;
try {
photoFile = createImageFile();
} catch (IOException ex) {
// Error occurred while creating the File
...
}
// Continue only if the File was successfully created
if (photoFile != null) {
Uri photoURI = FileProvider.getUriForFile(this,
"com.example.android.fileprovider",
photoFile);
takePictureIntent.putExtra(MediaStore.EXTRA_OUTPUT, photoURI);
startActivityForResult(takePictureIntent, REQUEST_TAKE_PHOTO);
}
}
}
在此处查看更多Android Photo Basics