gpt4 book ai didi

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

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:16:00 27 4
gpt4 key购买 nike

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

最佳答案

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

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);

关于android - 始终在 Android 中以横向模式打开相机,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34879713/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com