Broadcast Intent Minimal Example for RICOH THETA
Close Camera
To use the CameraAPI, you’ll need to close the main RICOH camera app.
Intent closeCameraIntent = new Intent("com.theta360.ACTION_MAIN_CAMERA_CLOSE");
sendBroadcast(closeCameraIntent);
Open Camera
@Override
protected void onPause() {
super.onPause();
Intent openCameraIntent = new Intent("com.theta360.plugin.ACTION_CAMERA_OPEN");
sendBroadcast(openCameraIntent);
}