在Android的ConstraintLayout中裁剪背景图片

时间:2019-12-12 06:01:40

标签: android

<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:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/something

    tools:context=".StartupActivity"
    >

...some other view ...

</androidx.constraintlayout.widget.ConstraintLayout

使用android:background属性设置背景图像会设置图像的背景,但是会缩放图像以适合屏幕大小,但是我想centerCrop图像以保持其纵横比。我该如何在constraintLayout中执行此操作(由于其他视图已经存在,因此必须为constraintLayout)

1 个答案:

答案 0 :(得分:1)

在布局中使用android:adjustViewBounds="true",它将根据电话屏幕尺寸调整图像。