Android的默认摄像头方向

时间:2014-12-17 12:45:30

标签: android android-camera-intent

我正在开发一个Android应用程序,我想在其中将默认Camera的方向设置为Portrait。我的代码如下,但它不起作用。

if(item==0){
    mPicUri = Uri.fromFile(getOutputMediaFile(10101));
    Intent cameraIntent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
    cameraIntent.putExtra(MediaStore.EXTRA_OUTPUT, mPicUri);
    cameraIntent.putExtra(android.provider.MediaStore.EXTRA_SCREEN_ORIENTATION,
    ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
    startActivityForResult(cameraIntent, REQUEST_PIC_CAMERA);
}

0 个答案:

没有答案