Изображение не появляется при помещении его в вид карты - PullRequest
0 голосов
/ 03 мая 2019

Я загружаю изображения из firebase и загружаю их в плитки карточек в шахматном виде переработчика. Я хочу, чтобы ширина фотографий была одинаковой и соответствовала родительской, а высота менялась в зависимости от высоты фотографии.

Я не уверен, что я делаю неправильно, но изображения не отображаются. Я вижу тонкую линию, где должна быть фотография, вроде как это фотография, но она имеет высоту 1 пиксель, просто горизонтальную линию.

Это мой xml

<androidx.cardview.widget.CardView
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        android:id="@+id/staggered_feed_image_card"
        app:cardCornerRadius="16dp"
        app:cardElevation="0dp"
        android:layout_marginEnd="16dp"
        android:layout_marginStart="16dp">
    <ImageView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:srcCompat="@drawable/no_dread"
            android:id="@+id/staggered_feed_image"
            android:scaleType="centerCrop"/>
</androidx.cardview.widget.CardView>

Я также попытался обернуть imageView в другой макет, например:

<androidx.cardview.widget.CardView
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        android:id="@+id/staggered_feed_image_card"
        app:cardCornerRadius="16dp"
        app:cardElevation="0dp">
    <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content">
    <ImageView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:srcCompat="@drawable/no_dread"
            android:id="@+id/staggered_feed_image"
            android:scaleType="centerCrop"/>
    </RelativeLayout>
</androidx.cardview.widget.CardView>

Я пробовал относительное или вертикальное линейное расположение и пробовал оба с высотой, являющейся либо содержимым переноса, либо совпадающим с родительским, и ни одна из них не работала. This is the recycler, the lines aare supposed to be the photos

Ответы [ 3 ]

0 голосов
/ 03 мая 2019

Я думаю, вы захотите установить scaleType на fitCenter и adjustViewBounds на true:

    <ImageView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:srcCompat="@drawable/no_dread"
            android:id="@+id/staggered_feed_image"
            android:scaleType="fitCenter"
            android:adjustViewBounds="true"/>

Ссылка: https://proandroiddev.com/a-guide-for-android-imageview-scaletype-and-adjustviewbounds-64a1e4a35503

0 голосов
/ 03 мая 2019

Попробуйте использовать приведенный ниже код и дайте мне знать, видите ли вы свое изображение или нет.

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/viewBinary"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:orientation="vertical">

    <androidx.cardview.widget.CardView
        android:id="@+id/staggered_feed_image_card"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginStart="16dp"
        android:layout_marginEnd="16dp"
        app:cardCornerRadius="16dp"
        app:cardElevation="0dp">

        <ImageView
            android:id="@+id/staggered_feed_image"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:scaleType="centerCrop"
            app:srcCompat="@drawable/splashlogo" />
    </androidx.cardview.widget.CardView>
</LinearLayout>

Если это не поможет, проверьте, что в вашем проекте все идеально или нет:

1) implementation 'androidx.cardview:cardview:1.0.0' убедитесь, что вы добавили зависимость.

2) Попробуйте изменить drawable и проверьте свой макет.

Если проблема не устранена, сообщите мне.

0 голосов
/ 03 мая 2019

используйте представление контейнера, такое как RelativeLayout или LinearLayout, в качестве первого дочернего элемента в представлении карты.Затем вы можете разместить содержимое в этом макете так, как вам нужно.

Пример

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/ap"

Затем перейдите к описанному выше сценарию

Обновление: поскольку представление карты сбивает с толку, так чтосхема, которую я в основном использую

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto">
<android.support.v7.widget.CardView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_margin="16dp">
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">
        <ImageView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:scaleType="centerCrop"
            android:src="@drawable/balon" />
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical"
            android:padding="16dp">
            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginBottom="8dp"
                android:text="@string/card_title"
                android:textColor="#000"
                android:textSize="18sp" />
            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="@string/card_content"
                android:textColor="#555" />
        </LinearLayout>
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content">
            <Button
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/action_share"
                android:theme="@style/PrimaryFlatButton" />
            <Button
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/action_explore"
                android:theme="@style/PrimaryFlatButton" />
        </LinearLayout>
    </LinearLayout>
</android.support.v7.widget.CardView>
</RelativeLayout>

Надеюсь, это поможет

...