在自定义ImageView中处理图片加载失败可以通过重写onDraw()
方法来实现,例如:
public class MyImageView extends ImageView {
private Drawable mErrorDrawable;
public MyImageView(Context context) {
super(context);
}
public MyImageView(Context context, AttributeSet attrs) {
super(context, attrs);
}
public MyImageView(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
}
public void setErrorDrawable(Drawable errorDrawable) {
mErrorDrawable = errorDrawable;
}
@Override
protected void onDraw(Canvas canvas) {
try {
super.onDraw(canvas);
} catch (Exception e) {
if (mErrorDrawable != null) {
mErrorDrawable.setBounds(0, 0, getWidth(), getHeight());
mErrorDrawable.draw(canvas);
}
}
}
}
在上面的代码中,我们定义了一个MyImageView
类继承自ImageView,并添加了一个mErrorDrawable属性用于设置加载失败时显示的图片。重写了onDraw()
方法,在调用super.onDraw()时可能会抛出异常,我们捕获异常后将mErrorDrawable绘制到Canvas上。这样就能在图片加载失败时显示自定义的图片了。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。