android - 前置摄像头预览不是全屏

标签 android camera

我使用 camera2 api 在 android 上制作了一个自定义相机。我目前在一台设备 OnePlus One 上遇到间歇性问题。经过检查,它可以与其他设备一起正常工作,例如 S3、S4、HTC(所有主要设备)、Moto(所有设备)。

请建议是否需要/需要任何特别的东西来解决 OnePlus One 和其他设备上的这个问题?

public class AutoFitTextureView extends TextureView {

private int mRatioWidth = 0;
private int mRatioHeight = 0;

public AutoFitTextureView(Context context) {
    this(context, null);
}

public AutoFitTextureView(Context context, AttributeSet attrs) {
    this(context, attrs, 0);
}

@SuppressLint("NewApi")
public AutoFitTextureView(Context context, AttributeSet attrs, int defStyle) {
    super(context, attrs, defStyle);
}

/**
 * Sets the aspect ratio for this view. The size of the view will be measured based on the ratio
 * calculated from the parameters. Note that the actual sizes of parameters don't matter, that
 * is, calling setAspectRatio(2, 3) and setAspectRatio(4, 6) make the same result.
 *
 * @param width  Relative horizontal size
 * @param height Relative vertical size
 */
@SuppressLint("NewApi")
public void setAspectRatio(int width, int height) {
    if (width < 0 || height < 0) {
        throw new IllegalArgumentException("Size cannot be negative.");
    }
    mRatioWidth = width;
    mRatioHeight = height;
    requestLayout();
}

@SuppressLint("NewApi")
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
    super.onMeasure(widthMeasureSpec, heightMeasureSpec);
    if (mRatioWidth ==0 && mRatioHeight == 00) {
           int width = MeasureSpec.getSize(widthMeasureSpec);
           int height = MeasureSpec.getSize(heightMeasureSpec);
           if (0 == mRatioWidth || 0 == mRatioHeight) {
               setMeasuredDimension(width, height);
           } else {
               if (width < height * mRatioWidth / mRatioHeight) {
                   setMeasuredDimension(width, width * mRatioHeight / mRatioWidth);
               } else {
                   setMeasuredDimension(height * mRatioWidth / mRatioHeight, height);
               }
           }
    }else {
        setMeasuredDimension(mRatioWidth, mRatioHeight);
    }
}

我们使用了this制作这个相机的链接

提前致谢

最佳答案

您应该更改测量的宽度和高度以覆盖整个屏幕,而不是适应屏幕,如下所示。

来自:

if (width < height * mRatioWidth / mRatioHeight) 

if (width > height * mRatioWidth / mRatioHeight)

它对我来说效果很好。 Get full screen preview with Android camera2

关于android - 前置摄像头预览不是全屏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30622664/

相关文章:

android - 动态添加页面到 Fragment Page Adapter

android - Android 上的 UIImage

安卓 : Staged Roll-Out?

ios - 在 iOS 中将视频裁剪成圆形?

Android Lollipop 问题 - 无法将图像从相机加载到 ImageView

iphone - 使用 ccTouchesMoved 方法 move CCCamera? (cocos2d、iPhone)

c# - Windows Phone 8.1 相机初始化

android.process.acore 意外停止

c++ - 使用 Kinect 和 OpenGL 进行投影映射

android - 类广播异常 achartengine