gpt4 book ai didi

android - 如何在 cameraX 预览中设置预览大小?

转载 作者:行者123 更新时间:2023-12-04 01:28:39 24 4
gpt4 key购买 nike

我正在尝试以纵向模式创建预览,并且我希望预览与屏幕一样宽并垂直包装内容。但是,当我这样做时,我总是得到预览大小 1200x 1200并且预览被水平拉伸(stretch)以填满屏幕。

捕获的图像大小正确( 1024x768

换句话说,我希望预览大小与捕获的图像相同。

任何帮助将不胜感激。

preview = new Preview.Builder()
.setTargetAspectRatioCustom(new Rational(3, 4))
.build();
<androidx.constraintlayout.widget.ConstraintLayout 
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.molescope.CameraXActivity">

<androidx.camera.view.PreviewView
android:id="@+id/preview_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent" />

<ImageButton
android:id="@+id/capture_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
android:layout_marginBottom="@dimen/margin_vertical"/>


</androidx.constraintlayout.widget.ConstraintLayout>
    def camerax_version = "1.0.0-beta03"
implementation "androidx.camera:camera-core:${camerax_version}"
implementation "androidx.camera:camera-camera2:${camerax_version}"
implementation "androidx.camera:camera-lifecycle:${camerax_version}"
implementation "androidx.camera:camera-view:1.0.0-alpha10"
implementation "androidx.camera:camera-extensions:1.0.0-alpha10"

最佳答案

如果您希望预览适合屏幕的宽度,您可能需要测试设置 PreviewView 的比例类型至FIT_CENTER (或 FIT_STARTFIT_END ,取决于您希望如何在屏幕上布局预览)。
您可以通过编程方式设置比例类型:

previewView.setScaleType(PreviewView.ScaleType.FIT_CENTER);
或者在布局文件中:
<androidx.camera.view.PreviewView
...
android:scaleType="fitCenter" />
FIT_*适合预览的宽度或高度以匹配 PreviewView 的宽度或高度的容器(或两者,如果容器和预览分辨率具有相同的纵横比),匹配的尺寸取决于几件事,包括预览分辨率、设备的自然方向和显示器的当前方向。因此,这种方法可能不适用于所有情况,有时,预览会填充其容器的宽度,有时,它将填充容器的高度。
如果您关心显示预览的纵横比,另一种解决问题的方法是设置 PreviewView的纵横比(在你的情况下,我假设它是 4x3),并设置 PreviewView使用 FIT_CENTER规模类型。

关于android - 如何在 cameraX 预览中设置预览大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61396538/

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