本文介绍了Android的意图拍摄照片和视频两者兼而有之?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是否有启动相机选项捕捉Android上的图片和视频的意图是什么?

Is there an Intent for starting a camera with options to capture both Pictures and Videos on Android?

我用两个MediaStore.ACTION_VIDEO_CAPTURE和MediaStore.ACTION_IM​​AGE_CAPTURE捕捉音频或视频,但我不能找到一个意向,将得到期权对他们俩之间的切换,如本例中的应用程序:

I've used both MediaStore.ACTION_VIDEO_CAPTURE and MediaStore.ACTION_IMAGE_CAPTURE to capture either audio or video, but I can't find an Intent that will get the option for switching between both of them, as in this example app:

谢谢!

推荐答案

我可以通过使用下面的code同时捕获的图像和视频。

I could capture both image and video by using the below code.

意向意图=新意图(MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA);

Intent intent = new Intent(MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA);

这篇关于Android的意图拍摄照片和视频两者兼而有之?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-23 09:55