问题描述
- android imageview为什么不能显示这张图片?
-
布局文件
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity" ><ImageView android:id="@+id/iv" android:layout_width="match_parent" android:layout_height="match_parent" android:background="@drawable/aa"/>
谁能个我解释下原因~~~
解决方案
Android中 得到ImageView中显示的图片
关于Android ImageView 图片显示的几个问题
【Android】用ImageView显示本地和网上的图片
解决方案二:
图片太大了?
改一下宽高试试
android:layout_width="wrap_content"
android:layout_height="wrap_content"
解决方案三:
不是你说的这个问题,我都试过了,也换机器去试了,估计应该是图片问题~~
解决方案四:
一般我遇到这种不能显示的 都是因为图片太大,就是改成具体的宽高尺寸也显示不出来,你可以看下图片尺寸
解决方案五:
先看图片尺寸,确定图片是正确的,再看activity是否调用这个布局。
时间: 2024-11-20 15:16:55