How to open camera directly in panorama/photosphere mode?

前端 未结 3 1575
忘掉有多难
忘掉有多难 2020-12-01 08:33

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

3条回答
  •  抹茶落季
    2020-12-01 08:56

    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.

提交回复
热议问题