我有以下问题:我正在开发一个应用程序,用户可以在其中拍照(附加到帖子)并将图片保存到外部存储。我希望这张照片也出现在图片库中,我正在使用Media Scanner意图,但它似乎不起作用。我在编写代码时遵循官方的Android开发人员指南,所以我不知道出了什么问题。
我的部分代码:
用于捕获图像的意图:
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(getActivity().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
Toast.makeText(getActivity(), ex.getMessage(), Toast.LENGTH_SHORT).show();
}
// Continue only if the File was successfully created
if (photoFile != null) {
takePictureIntent.putExtra(MediaStore.EXTRA_OUTPUT,
Uri.fromFile(photoFile));
startActivityForResult(takePictureIntent, REQUEST_IMAGE_CAPTURE);
}
}
}
创建文件以保存图像:
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 = Environment.getExternalStoragePublicDirectory(
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;
}
在视图中显示图像:
private void setPic() {
// Get the dimensions of the View
int targetW = 60;
int targetH = 100;
// Get the dimensions of the bitmap
BitmapFactory.Options bmOptions = new BitmapFactory.Options();
bmOptions.inJustDecodeBounds = true;
BitmapFactory.decodeFile(mCurrentPhotoPath, bmOptions);
int photoW = bmOptions.outWidth;
int photoH = bmOptions.outHeight;
// Determine how much to scale down the image
int scaleFactor = Math.min(photoW/targetW, photoH/targetH);
// Decode the image file into a Bitmap sized to fill the View
bmOptions.inJustDecodeBounds = false;
bmOptions.inSampleSize = scaleFactor;
bmOptions.inPurgeable = true;
Bitmap bitmap = BitmapFactory.decodeFile(mCurrentPhotoPath, bmOptions);
img_added.setImageBitmap(bitmap);
}
播放媒体扫描程序,以使图像显示在库中:
private void galleryAddPic() {
Intent mediaScanIntent = new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE);
File f = new File(mCurrentPhotoPath);
Uri contentUri = Uri.fromFile(f);
mediaScanIntent.setData(contentUri);
getActivity().sendBroadcast(mediaScanIntent);
}
返回Image Capture意图后运行的代码:
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
if (requestCode == REQUEST_IMAGE_CAPTURE && resultCode == Activity.RESULT_OK) {
setPic();
galleryAddPic();
}
}
我还尝试使用Intent.ACTION_MEDIA_MOUNTED
代替Intent.ACTION_MEDIA_SCANNER_SCAN_FILE
,但在这种情况下,我收到了“权限被拒绝”错误。当我记录传递给intent的URI时,我得到file:///storage/emulated/0/Pictures/JPEG_20150803_104122_-1534770215.jpg
,这应该没问题。其他所有工作(捕获图像,将其保存到外部存储并在视图中显示)除此之外,所以我真的不知道出了什么问题。有谁有想法吗?提前谢谢!
答案 0 :(得分:7)
这取决于此设备Gallery
的实现方式。受欢迎的照片应用会收到Intent.ACTION_MEDIA_SCANNER_SCAN_FILE
广播,但有些只是收听Android媒体数据库。
备选方案,您可以同时手动将图像插入MediaStore
。
public final void notifyMediaStoreScanner(final File file) {
try {
MediaStore.Images.Media.insertImage(mContext.getContentResolver(),
file.getAbsolutePath(), file.getName(), null);
mContext.sendBroadcast(new Intent(
Intent.ACTION_MEDIA_SCANNER_SCAN_FILE, Uri.fromFile(file)));
} catch (FileNotFoundException e) {
e.printStackTrace();
}
}
另外,请确保您的照片不在private
文件夹中,例如内部存储空间或使用Context.MODE_PRIVATE
进行书写。否则,其他应用程序将无权访问此文件。
答案 1 :(得分:1)
在Android中,如果您从应用程序中捕获或添加SD卡或等等图像。
有时候它不会在画廊中出现。
如果您捕获并等待一段时间直到完成同步过程,您将能够看到。
你可能不会当场看到。
答案 2 :(得分:0)
尝试以下代码
<c:forEach items="${list}" var="item" varStatus="loop">
<c:if test="${not loop.first}">
${item}
</c:if>
</c:forEach>
此处 imagePath 是捕获的图片完整路径
答案 3 :(得分:0)
在我的情况下,它默默地失败了,因为我在清单中有两个权限:
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
您只需要WRITE_EXTERNAL_STORAGE
。从文档中获取的其余代码不需要任何修改,但在原因不同的情况下检查其他答案。