How to open photosphere camera?
Asked Answered
O

1

6

Android API we don't have to open camera in photosphere mode.When we are opening normal camera how to show photosphere mode option in camera options.

To open normal camera I used below intents:

1)Intent intent=new Intent(MediaStore.ACTION_IMAGE_CAPTURE);

startActivityForResult(intent, CAPTURE_IMAGE_ACTIVITY_REQUEST_CODE);

2)Intent intent=new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);

startActivityForResult(intent, CAPTURE_IMAGE_ACTIVITY_REQUEST_CODE);

3)Intent intent=new Intent("android.media.action.IMAGE_CAPTURE");

startActivityForResult(intent, CAPTURE_IMAGE_ACTIVITY_REQUEST_CODE);

Ouzel answered 24/4, 2013 at 13:14 Comment(1)
Check this question: #15378163Mortarboard
N
4

Unfortunately it is not possible to open up the camera in Photo Sphere mode directly right now, but given enough interest I think we should add it.

Nucleotidase answered 29/6, 2013 at 0:21 Comment(1)
Sascha, where can we manifest the interest? I would like to officially apply +1 on this ;)Preventive

© 2022 - 2024 — McMap. All rights reserved.