Save / Load image to/from local storage
问题 First of all, my permissions : <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> My methods to save and get the image: private void saveIamgeToLocalStore(Bitmap finalBitmap) { String root = Environment.getExternalStorageDirectory().toString(); File myDir = new File(root + "/temp"); myDir.mkdirs(); String fname = "Profile_Image.png"; File file = new File (myDir, fname); if (file.exists())