ImageView не является центром внутри CardView - PullRequest
0 голосов
/ 18 декабря 2018

У меня есть квадратное изображение, и мой ImageView в моем CardView также квадратный, но он показывает мне такую ​​картинку: Picture

Исходное изображение:

Original

Это мой файл макета:

<?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.

Ответы [ 4 ]

0 голосов
/ 18 декабря 2018

Вы можете использовать это следующим образом: -

<ImageView
       android:id="@+id/illness_image"
       android:layout_width="match_parent"
       android:layout_height="wrap_content"
       android:scaleType="fitXY"
       android:background="?attr/colorPrimaryDark"
/>
0 голосов
/ 18 декабря 2018

Попробуйте это

 <?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="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">

    <ImageView
        android:id="@+id/illness_image"
        android:layout_width="match_parent"
        android:layout_height="364dp"
        android:background="?attr/colorPrimaryDark"
        android:scaleType="fitXY"
       />

    <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>

0 голосов
/ 18 декабря 2018

Поместите этот LOC

        android:scaleType="centerInside"

в ваш ImageView

<ImageView
            android:id="@+id/illness_image"
            android:layout_width="364dp"
            android:scaleType="centerInside"
            android:layout_height="364dp"
            android:background="?attr/colorPrimaryDark"
            android:cropToPadding="true" />
0 голосов
/ 18 декабря 2018

Просто добавьте android:layout_gravity="center" в ваш ImageView , он будет работать

Попробуйте это

<?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"
    android:layout_margin="10dp"
    app:cardBackgroundColor="@android:color/white"
    app:cardElevation="2dp"
    app:cardPreventCornerOverlap="true">

    <LinearLayout
        android:id="@+id/linearLayout"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">

        <ImageView
            android:id="@+id/illness_image"
            android:layout_width="350dp"
            android:layout_height="364dp"
            android:layout_gravity="center"
            android:scaleType="centerInside"
            android:src="@drawable/dishu" />

        <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>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...