为了账号安全,请及时绑定邮箱和手机立即绑定

如何正确设置Android相机方向?

如何正确设置Android相机方向?

素胚勾勒不出你 2019-08-16 17:25:58
如何正确设置Android相机方向?我想根据Android中的设备方向设置相机方向,但似乎没有任何效果。我尝试旋转Surface以及相机参数,但是纵向模式下的相机预览总是颠倒过来。我需要顺时针旋转90度才能使其正确。这是我现在使用的代码,仅适用于横向模式。    SurfaceHolder.Callback surfaceCallback = new SurfaceHolder.Callback() {     @Override     public void surfaceDestroyed(SurfaceHolder holder) {         camera.stopPreview();         camera.release();         camera = null;     }     @Override     public void surfaceCreated(SurfaceHolder holder) {                   initCamera();                }     private Size getOptimalPreviewSize(List<Size> sizes, int w, int h) {         final double ASPECT_TOLERANCE = 0.2;         double targetRatio = (double) w / h;         if (sizes == null)             return null;         Size optimalSize = null;         double minDiff = Double.MAX_VALUE;         int targetHeight = h;         // Try to find an size match aspect ratio and size         for (Size size : sizes) {             Log.d(TAG, "Checking size " + size.width + "w " + size.height                    + "h");             double ratio = (double) size.width / size.height;             if (Math.abs(ratio - targetRatio) > ASPECT_TOLERANCE)                 continue;             if (Math.abs(size.height - targetHeight) < minDiff) {                 optimalSize = size;                 minDiff = Math.abs(size.height - targetHeight);             }         }         // Cannot find the one match the aspect ratio, ignore the         // requirement         if (optimalSize == null) {             minDiff = Double.MAX_VALUE;             for (Size size : sizes) {                 if (Math.abs(size.height - targetHeight) < minDiff) {                     optimalSize = size;                     minDiff = Math.abs(size.height - targetHeight);                 }             }         }         return optimalSize;     }
查看完整描述

3 回答

?
慕勒3428872

TA贡献1848条经验 获得超6个赞

此解决方案适用于所有 Android版本。您可以在Java中使用反射使其适用于所有Android设备:

基本上你应该创建一个反射包装来调用Android 2.2 setDisplayOrientation,而不是调用特定的方法。

方法:

    protected void setDisplayOrientation(Camera camera, int angle){
    Method downPolymorphic;
    try
    {
        downPolymorphic = camera.getClass().getMethod("setDisplayOrientation", new Class[] { int.class });
        if (downPolymorphic != null)
            downPolymorphic.invoke(camera, new Object[] { angle });
    }
    catch (Exception e1)
    {
    }}

而不是使用camera.setDisplayOrientation(x)使用setDisplayOrientation(camera,x)

    if (Integer.parseInt(Build.VERSION.SDK) >= 8)
        setDisplayOrientation(mCamera, 90);
    else
    {
        if (getResources().getConfiguration().orientation == Configuration.ORIENTATION_PORTRAIT)
        {
            p.set("orientation", "portrait");
            p.set("rotation", 90);
        }
        if (getResources().getConfiguration().orientation == Configuration.ORIENTATION_LANDSCAPE)
        {
            p.set("orientation", "landscape");
            p.set("rotation", 90);
        }
    }


查看完整回答
反对 回复 2019-08-16
  • 3 回答
  • 0 关注
  • 1372 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信