通过使用FileProvider for Android 7.1.1拍照后,我无法将文件保存到图库

时间:2017-11-20 10:32:59

标签: java android android-camera android-gallery android-fileprovider

我使用FileProvider构建我的应用程序,我希望在我接受后保存图像。但我无法在图库中找到图像。 我在Android Studio教程中找到了这些源代码。我不知道是什么问题。我尝试使用调试器,我认为createFile()是正确的。我也有我的位图工作。它可以显示我拍摄的图像,但我无法将图像添加到图库中。

我在Manifest.xml中有这个

<provider
        android:name="android.support.v4.content.FileProvider"
        android:authorities="com.temp.test"
        android:exported="false"
        android:grantUriPermissions="true">
        <meta-data
            android:name="android.support.FILE_PROVIDER_PATHS"
            android:resource="@xml/file_paths"/>
</provider>

在file_paths.xml中我有

<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
       <external-path name="external" path="Android/data/com.temp.test/files/Pictures" />
</paths>

这就是我写活动的方式

private String mCurrentPhotoPath;
private ImageView mImageView;
private ImageButton StartCameraBtn;
private File photoFile = null;

//requestCode
private static final int REQUEST_IMAGE_CAPTURE = 1;

@Override
protected void onCreate(Bundle savedInstanceState)
{
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_photo_note);

    mImageView = (ImageView) findViewById(R.id.imageView);

    StartCameraBtn = (ImageButton) findViewById(R.id.StartCamera);

    StartCameraBtn.setOnClickListener(this);
}
public void onClick(View view)
{
    clearAllFocus();
    switch (view.getId())
    {
        case R.id.StartCamera:
            Intent takePictureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
            if (takePictureIntent.resolveActivity(getPackageManager()) != null)
            {
                try
                {
                    photoFile = createFile();
                }
                catch (IOException e)
                {
                    e.printStackTrace();
                }
                if(photoFile != null){
                    Uri photoURI = FileProvider.getUriForFile(this,
                            "com.temp.test",
                            photoFile);
                    takePictureIntent.putExtra(MediaStore.EXTRA_OUTPUT, photoURI);
                    startActivityForResult(takePictureIntent, REQUEST_IMAGE_CAPTURE);
                }
            }
            break;
...
}

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data)
{
    mImageView.setImageBitmap(null);

    switch (requestCode)
    {
        case REQUEST_IMAGE_CAPTURE:
            if (resultCode == RESULT_OK)
            {
                setPic();
                galleryAddPic();
            }
            break;
    }
}
private File createFile() 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;
}

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);
    this.sendBroadcast(mediaScanIntent);
}
private void setPic()
{
    // Get the dimensions of the View
    int targetW = mImageView.getWidth();
    int targetH = mImageView.getHeight();

    // 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);
    mImageView.setImageBitmap(bitmap);
}

请帮忙!谢谢!

我使用调试器来测试galleryaddpic()并且已成功访问URI,但我不知道为什么我无法将其添加到库中。我也无法在android VM目录中找到图像文件。 这是调试日志:

https://i.stack.imgur.com/JN9uJ.png

我使用chickendinner作为我的domian,而keep是我的应用程序的名称。

谢谢!

2 个答案:

答案 0 :(得分:1)

在onActivityResult中调用此函数。它对我有用!

它是片段。在活动中,您可以使用“ this”代替“ getActivity()”。

private void galleryAddPic() {
        File f = new File(imageFilePath); //set your picture's path

        try {
            MediaStore.Images.Media.insertImage(getActivity().getContentResolver(),
                    f.getAbsolutePath(), f.getName(), null);
            getActivity().sendBroadcast(new Intent(
                    Intent.ACTION_MEDIA_SCANNER_SCAN_FILE, Uri.fromFile(f)));
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        }
    }

答案 1 :(得分:0)

您的代码处理

  • 将新照片作为jpg文件写入文件系统
  • 通过broadcst Intent.ACTION_MEDIA_SCANNER_SCAN_FILE
  • 将新照片添加到media-db
  • 创建FileProvider,允许其他应用通过content-uri //Android/data/com.temp.test/files/Pictures/...
  • 访问私有content://com.temp.test/...文件

我认为media-db扫描程序没有通过文件uri对应用程序的私有数据目录Android/data/com.temp.test/files/Pictures的读取权限,因此无法将新照片添加到media-db。

Whatsapp和其他应用程序将他们收到/发送的照片存储在公共可读内部存储器中(例如/ sdcard / PICTURES / WhatsApp /),媒体扫描器可以通过{-1}通过file-uri读取它。

我不知道,如果媒体扫描程序可以处理Intent.ACTION_MEDIA_SCANNER_SCAN_FILE而不是content: -uris:您可以试试这个:

file uri-s

如果有效,请告知我们。

如果这不起作用,您可以尝试手动插入&#34; content://com.temp.test/..."进入媒体数据库。

使用private void galleryAddPic() { Intent mediaScanIntent = new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE); // assume that mCurrentPhotoPath ="Android/data/com.temp.test/files/Pictures/myTestImage.jpg" // can be accessed from outside as "content://com.temp.test/myTestImage.jpg" Uri contentUri = Uri.parse("content://com.temp.test/myTestImage.jpg"); mediaScanIntent.setData(contentUri); this.sendBroadcast(mediaScanIntent); } 应该没有文件提供者