Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
addImage.setOnClickListener(
new OnClickListener() {
@Override
public void onClick(View v) {
camera = Camera.open();
camera.release();
}
});
private void takePicture() {
camera.takePicture(shutterCallback, rawCallback, jpegCallback);
}
ShutterCallback shutterCallback = new ShutterCallback() {
public void onShutter() {
// TODO Do something when the shutter closes.
}
};