Android camera supported picture sizes
问题 I am trying to retrieve the available camera image sizes, so I able to adjust the camera to my preferred image resolution. To retrieve the Android camera size I've used the following code: camera=Camera.open(); Parameters params = camera.getParameters(); List sizes = params.getSupportedPictureSizes(); for (int i=0;i<sizes.size();i++){ Log.i("PictureSize", "Supported Size: " +sizes.get(i)); } This gives me the following output, which I am not sure how to translate into a size. "Supported size: