Use center crop for recipe images

This commit is contained in:
Kirill Kamakin
2021-11-25 19:34:31 +03:00
parent 5070f975c4
commit 6c41c4fcf6
2 changed files with 2 additions and 0 deletions

View File

@@ -12,6 +12,7 @@
<ImageView <ImageView
android:id="@+id/image" android:id="@+id/image"
android:scaleType="centerCrop"
android:layout_width="0dp" android:layout_width="0dp"
android:layout_height="@dimen/fragment_recipe_info_image_height" android:layout_height="@dimen/fragment_recipe_info_image_height"
android:layout_marginBottom="@dimen/margin_small" android:layout_marginBottom="@dimen/margin_small"

View File

@@ -36,6 +36,7 @@
android:layout_marginTop="20dp" android:layout_marginTop="20dp"
android:layout_marginEnd="13dp" android:layout_marginEnd="13dp"
android:contentDescription="@string/content_description_view_holder_recipe_image" android:contentDescription="@string/content_description_view_holder_recipe_image"
android:scaleType="centerCrop"
app:layout_constraintBottom_toTopOf="@+id/name" app:layout_constraintBottom_toTopOf="@+id/name"
app:layout_constraintEnd_toEndOf="parent" app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" app:layout_constraintStart_toStartOf="parent"