如何在安卓中裁剪不同比例的图像?



我在image-view中有一个图像,当我们单击相应的按钮时,我想以不同的比例裁剪,例如 4:3、1:1、9:11 等。 我是新手,不知道如何用这种比例裁剪图像。

感谢您的任何帮助。

ImageView放在ConstraintLayout内。这将使 ImageView 能够访问app:layout_constraintDimensionRatio,您可以在其中指定所需的比率。

<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/imageView"
android:layout_width="match_parent"
android:layout_height="0dp"
app:layout_constrainedHeight="true"
app:layout_constrainedWidth="false"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintDimensionRatio="183:124"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"/>
</androidx.constraintlayout.widget.ConstraintLayout>

您也可以以编程方式执行此操作:

imageView.updateLayoutParams<ConstraintLayout.LayoutParams> {
dimensionRatio = "183:70"
}

相关内容

  • 没有找到相关文章

最新更新