Google Glass preview image scrambled with new XE10 release

For now, please try adding the following workaround after you acquire the Camera but before you setup and start the preview:

Camera.Parameters params = camera.getParameters();
params.setPreviewFpsRange(30000, 30000);
camera.setParameters(params);

(Or just add the setPreviewFpsRange call to your existing parameters if you’re setting others as well.)

Leave a Comment