在Android中始终以横向模式打开相机

use*_*234 5 android android-intent

在我的Android应用中,单击按钮后,我希望相机以横向模式打开。即使我将手机旋转到纵向模式,相机也应始终处于横向模式或纵向模式

Mil*_*iya 5

使用此代码在横向模式下打开相机

Intent cameraIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
cameraIntent.putExtra(MediaStore.EXTRA_SCREEN_ORIENTATION, ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
File f = new File(Environment.getExternalStorageDirectory(), "temp.jpg");
cameraIntent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(f));
startActivityForResult(cameraIntent, Utils.CAMERA__CROP_REQUEST);
Run Code Online (Sandbox Code Playgroud)


小智 -1

将该活动的方向固定为清单中的横向方向。像这样

<activity
   android:name="YourActivity"
   android:screenOrientation="landscape"/>
Run Code Online (Sandbox Code Playgroud)