为啥我的图像没有显示在 imageView 中?
Posted
技术标签:
【中文标题】为啥我的图像没有显示在 imageView 中?【英文标题】:Why does my image doesn't show in imageView?为什么我的图像没有显示在 imageView 中? 【发布时间】:2021-10-10 02:12:13 【问题描述】:所以我正在使用 android studio 处理我的项目。我用 CardView 创建了一个简单的 xml,并在其中使用了 ImageView。代码如下:
<androidx.cardview.widget.CardView
android:layout_
android:layout_
android:layout_centerInParent="true"
android:layout_marginStart="5dp"
android:layout_marginEnd="5dp"
app:cardBackgroundColor="@color/white"
app:cardCornerRadius="20dp"
app:cardElevation="3dp"
app:cardMaxElevation="20dp">
<ImageView
android:id="@+id/imageView3"
android:layout_
android:layout_
tools:srcCompat="@drawable/vector_illustration" />
</androidx.cardview.widget.CardView>
但是当我运行应用程序时,图像没有出现。它应该是 like this,但它看起来是 like this。是不是因为图片太大?(我从谷歌图片下载了img)。如何解决这个问题?
【问题讨论】:
【参考方案1】:你可以试试这个
xmlns:app="http://schemas.android.com/apk/res-auto"
.
...
...
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/imageView3"
android:layout_
android:layout_
app:srcCompat="@drawable/vector_illustration"
/>
【讨论】:
以上是关于为啥我的图像没有显示在 imageView 中?的主要内容,如果未能解决你的问题,请参考以下文章