自定义对话框显示视频摄像头应用程序

时间:2014-11-18 08:09:05

标签: android android-intent camera alertdialog video-capture

我的意图是可以处理我的相机应用程序并直接转到录制选项 我想要的是我可以选择自己的摄像机应用程序。

以下是录制视频的代码。

private void recordVideo() {
    Intent intent = new Intent(MediaStore.ACTION_VIDEO_CAPTURE);

    fileUri = getOutputMediaFileUri(MEDIA_TYPE_VIDEO);

    // set video quality
    intent.putExtra(MediaStore.EXTRA_VIDEO_QUALITY, 1);

    intent.putExtra(MediaStore.EXTRA_OUTPUT, fileUri); // set the image file
                                                        // name

    // start the video capture Intent
    startActivityForResult(intent, CAMERA_CAPTURE_VIDEO_REQUEST_CODE);
}

0 个答案:

没有答案