如何获得 android 视觉示例相机预览以适应屏幕

How to get android vision sample camera preview to fit to screen

我尝试使预览匹配父级并尝试填充,但我无法使其工作。屏幕右侧有一条大灰线

在CameraSourcePreview.java中注释这行代码:

    if (childHeight > layoutHeight) {
        childHeight = layoutHeight;
        childWidth = (int)(((float) layoutHeight / (float) height) * width);
    }

我遇到了同样的问题。 @Mindshifter 的解决方案对我有用,但你可以在这里查看更多评论(我也在那里发布了类似的解决方案):

https://github.com/googlesamples/android-vision/issues/23