Updating gallery after taking pictures Gallery not showing all the pictures Android Camera
问题 I am using a onClick over a button to capture an image. PictureCallback myPictureCallback_JPG = new PictureCallback() { @Override public void onPictureTaken(byte[] arg0, Camera arg1) { FileOutputStream outStream = null; try { // Write to SD Card outStream = new FileOutputStream(String.format("/sdcard/%d.jpg", System.currentTimeMillis())); outStream.write(arg0); outStream.close(); Toast.makeText(Photo.this, "Image Saved to SD Card", Toast.LENGTH_SHORT).show(); System.out.println(); } catch