CamcorderProfile.QUALITY_HIGH:
与最高可用分辨率相对应的质量等级。
CamcorderProfile qualityProfile = CamcorderProfile.get(numCam,CamcorderProfile.QUALITY_HIGH);
Toast.makeText(context, qualityProfile.videoFrameWidth + " x " + qualityProfile.videoFrameHeight , Toast.LENGTH_LONG).show();
对于numCam = 0和numCam = 1,此代码返回640 x 480.设备有两个摄像头。
如果我在应用配置中打开设备本机应用相机,我可以看到:
后置摄像头:
前置摄像头:
¿为什么我在代码示例中没有得到1280x720?
答案 0 :(得分:0)