How to open photosphere camera?

本秂侑毒 提交于 2019-11-27 18:35:53

问题


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);


回答1:


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.



来源:https://stackoverflow.com/questions/16193002/how-to-open-photosphere-camera

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!