ImageLoader 加载图片

xiaoxiao2021-02-28  36

package com.example.com.myjingdong.utils; import android.content.Context; import android.widget.ImageView; import com.bumptech.glide.Glide; import com.youth.banner.loader.ImageLoader; /**  * Created by 他。 on 2018/4/20.  */ public class GlideImageLoader extends ImageLoader {     @Override     public void displayImage(Context context, Object path, ImageView imageView) {         Glide.with(context).load(path).into(imageView);     }

}

//调用

Glide.with(context).load(url).getIcon()).into(控件);

转载请注明原文地址: https://www.6miu.com/read-2300285.html

最新回复(0)