我在这里做错了吗?我想将该灰色加载为占位符,但是它不会加载。似乎只有在已经有另一个图像集或加载时才会发生。
Glide.with(getContext())
.load(url)
.placeholder(new ColorDrawable(ContextCompat.getColor(getContext(), R.color.placeholder_gray)))
.error(new ColorDrawable(ContextCompat.getColor(getContext(), R.color.placeholder_gray)))
.dontAnimate()
.into(new SimpleTarget<GlideDrawable>() {
@Override
public void onResourceReady(GlideDrawable resource, GlideAnimation<? super GlideDrawable> glideAnimation) {
image.setImageDrawable(resource);
}
@Override
public void onLoadFailed(Exception e, Drawable errorDrawable) {
resetImageView();
}
});
答案 0 :(得分:4)
请尝试以下代码:
Glide版本:编译&#39; com.github.bumptech.glide:glide:3.6.1&#39;
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/imageView"
android:layout_width="100dp"
android:layout_height="100dp"></ImageView>
</RelativeLayout>
ImageView imageView = (ImageView) findViewById(R.id.imageView);
Glide.with(this)
.load("http://matplotlib.org/_images/color_demo.png")
.placeholder(new ColorDrawable(ContextCompat.getColor(MainActivity.this, R.color.placeholder_gray)))
.error(new ColorDrawable(ContextCompat.getColor(MainActivity.this, R.color.placeholder_gray)))
.dontAnimate()
.into(imageView);
<color name="placeholder_gray">#A9A9A9</color>
尝试使用有效的网址和无效的网址。如果在加载图片之前显示有效的网址灰色,则会显示无效的网址灰色占位符。