У меня есть квадратное изображение, и мой ImageView в моем CardView также квадратный, но он показывает мне такую картинку: ![Picture](https://i.stack.imgur.com/swHFi.jpg)
Исходное изображение:
![Original](https://i.stack.imgur.com/x8bj2.jpg)
Это мой файл макета:
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.card.MaterialCardView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:cardBackgroundColor="@android:color/white"
app:cardElevation="2dp"
app:cardPreventCornerOverlap="true"
android:layout_margin="10dp">
<LinearLayout
android:id="@+id/linearLayout"
android:layout_width="374dp"
android:layout_height="match_parent"
android:orientation="vertical">
<ImageView
android:id="@+id/illness_image"
android:layout_width="364dp"
android:layout_height="364dp"
android:background="?attr/colorPrimaryDark"
android:cropToPadding="true" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="16dp">
<TextView
android:id="@+id/illness_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Title"
android:textAppearance="?attr/textAppearanceHeadline6"
android:textSize="20sp" />
<TextView
android:id="@+id/illness_description"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Description"
android:textAppearance="?attr/textAppearanceBody2"
android:textSize="10sp" />
<TextView
android:id="@+id/illness_engagement"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="right"
android:text="Engagment"
android:textAppearance="?attr/textAppearanceBody2"
android:textSize="10sp" />
</LinearLayout>
</LinearLayout>
</android.support.design.card.MaterialCardView>
РЕДАКТИРОВАТЬ: Извините, но я не понимаю.Я не могу вставить свой код XML.