Camera intent/Activity - avoid saving to gallery

前端 未结 3 1756
生来不讨喜
生来不讨喜 2021-02-07 17:35

I am using the Camera Activity to capture the picture. I call it with the MediaStore.EXTRA_OUTPUT extra parameter. The image is correctly saved

3条回答
  •  星月不相逢
    2021-02-07 17:52

    Just replace your code

    File file = new File(Environment.getExternalStorageDirectory(), "Test.jpg" );
    

    with following code

    File file = new File(getExternalFilesDir(Environment.DIRECTORY_PICTURES), "Test.jpg");
    

    Description of getExternalFilesDir() : Returns the absolute path to the directory on the primary external filesystem (that is somewhere on Environment.getExternalStorageDirectory()) where the application can place persistent files it owns. These files are internal to the applications, and not typically visible to the user as media.

提交回复
热议问题