I am stuck in a problem in Android 4.2 Jelly Bean.
How can I open camera from my application, by default in panorama/360 photosphere mode?
I have searched a
there is no standard way to do it. AFAIK Panorama, Photoshere are proprietary features of Gallery3d (provided by Google) package com.google.android.gallery3d. It's depends on firmware of the device.
in ApplicationManifest.xml
I've tried to start this activity from my application
Intent res = new Intent();
String mPackage = "com.google.android.gallery3d";
String mClass = "com.google.android.apps.lightcycle.ProtectedPanoramaCaptureActivity";
res.setComponent(new ComponentName(mPackage,mClass));
startActivity(res);
but it throws NullPointerException in camera app.