当我尝试加载图像时,我得到了这个结果:
这是我的简单代码:
Glide.with(this).load(R.drawable.girl_with_coffee_and_phone)
.placeholder(R.color.colorPrimary)
.into(mBackgroundImage);
这是我的活动布局:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/image_background"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop"/>
</RelativeLayout>
我做错了吗?
日志:
D/OpenGLRenderer: endAllActiveAnimators on 0x7842bfdc00 (InsetDrawable) with handle 0x783169e820
答案 0 :(得分:0)
试
Glide.with(this).load(R.drawable.girl_with_coffee_and_phone)
.centerCrop()
.into(mBackgroundImage);
从xml文件中删除android:scaleType param。
并在您将拥有的活动中:
ImageView mBackgroundImage= (ImageView)findViewById(R.id.image_background);
答案 1 :(得分:0)
我检查了源代码并找到了解决方法,只需检查github中的项目即可