我有一个图像视图作为背景。它比屏幕还大。我想将其水平居中。它应该与顶部对齐。因此,原始图像的顶部应该在屏幕上看到。如有必要,我可以调整原始图像的大小。
例如,在长颈鹿图像中,我应该能够从头到脖子看到,而不是到脚。因为宽度允许那么多。
XML 代码
...
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<ImageView
android:id="@+id/imageView5"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="matrix"
android:src="@drawable/home_screen_wallpaper_image"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
通常的音阶类型不适合您。您将需要使用 MATRIX 比例类型。
以下是如何应用它:
binding.matrixImage.doOnNextLayout {
// We will use a Matrix to shift the image left.
binding.matrixImage.scaleType = ImageView.ScaleType.MATRIX
// Compute how far to shift the image
val dx = (binding.matrixImage.drawable.intrinsicWidth - binding.matrixImage.width) / 2f
// Create and set the Matrix.
val matrix = Matrix()
matrix.postTranslate(-dx, 0f)
binding.matrixImage.imageMatrix = matrix
}
<ImageView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:adjustViewBounds="true"
android:scaleType="fitStart"
app:srcCompat="@drawable/home_screen_wallpaper_image" />