我可以将 android 应用程序的照片保存到 SD 卡上吗?

Can I save photo of android app on sd card?

我正在构建一个从相机拍照的应用程序,但我不知道我可以将我的应用程序照片保存在 SD 卡上的 avd android(我的 AVD:Nexus 5X API 26 Android 8.0)。 我拍了照片并在我的应用程序上显示了我的照片,但我无法在我为我的应用程序创建的文件夹中找到它(在 SDCard 中)。谢谢。

首先在您的清单中添加权限:

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

所以你需要获取你的 Bitmap.you 可以尝试从 ImageView 中获取它,例如:

BitmapDrawable drawable = (BitmapDrawable) mImageView1.getDrawable();
Bitmap bitmap = drawable.getBitmap();

您必须从 SD 卡进入目录

    File sdCardDirectory = Environment.getExternalStorageDirectory();
// Next, create your specific file for image storage:

    File image = new File(sdCardDirectory, "test.png");
//After that, you just have to write the Bitmap :

    boolean success = false;

    // Encode the file as a PNG image.
    FileOutputStream outStream;
    try {

        outStream = new FileOutputStream(image);
        bitmap.compress(Bitmap.CompressFormat.PNG, 100, outStream); 
        /* 100 to keep full quality of the image */

        outStream.flush();
        outStream.close();
        success = true;
    } catch (FileNotFoundException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    }

    if (success) {
        Toast.makeText(getApplicationContext(), "Image saved with success",
                Toast.LENGTH_LONG).show();
    } else {
        Toast.makeText(getApplicationContext(),
                "Error during image saving", Toast.LENGTH_LONG).show();
    }