我正在从Firebase加载图像,并在交错的回收器视图中将它们加载到卡片砖中。我希望照片的宽度保持一致并与父项匹配,并且希望高度根据照片的高度而改变。
我不确定我在做什么错,但是图像没有显示。我可以看到照片应该位于的细线,看起来像是照片,但高度为1px,只是一条水平线。
这是我的xml
/usr/share
我还尝试将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"
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>
答案 0 :(得分:0)
将类似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"
然后继续上述情况
更新:由于cardview令人困惑,所以这是我主要使用的方案
<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>
我希望这对您有帮助
答案 1 :(得分:0)
我想您需要将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
答案 2 :(得分:0)
尝试使用以下代码,让我知道您可以看到您的图像。
<?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
并检查您的布局。
如果您仍然面临问题,请告诉我。
答案 3 :(得分:0)
尝试改变
app:srcCompat="@drawable/no_dread"
到
android:src="@drawable/no_dread"
在您的 Imageview 中,它对我有用