I'm implementing a splash screen for my app, and when it runs, the splash contains a blurred image , not how it should be.
<ImageView
android:id="@+id/imageView"
android:layout_width="0dp"
android:layout_height="0dp"
android:scaleType="centerCrop"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.0"
tools:srcCompat="@mipmap/ic_launcher_foreground" />
Which one do I have to choose? Or how do I have to add the image? Because the image is 2700x2700px... I have the imageView as centerCrop.