今天我收到了对我制作的应用的投诉。基本上,问题是我有ImageView
从资源目录加载图像,但有时,图像未加载,而是显示空白区域。唯一的抱怨来自索尼Xperia Z3和Android版本5.1.1。 drawable仅为xhdpi
添加,但我知道如果需要,Android会将其缩放到相应的分辨率。你有任何想法,为什么这可能发生,因为我无法重现这个错误?此外,这是我的ImageView
代码,但我确信没有问题。
<ImageView
android:layout_width="80dp"
android:layout_height="80dp"
android:layout_marginBottom="@dimen/padding_medium"
android:background="@drawable/green_logo"
android:scaleType="fitCenter"
android:contentDescription="@null" />
答案 0 :(得分:4)
为什么要为ImageView使用背景?使用android:src="@drawable/image"
。