1

我正在使用NetworkImageViewvolley 库和RecyclerView. 滚动列表后,一些图像会从NetworkImageView. 我正在onBindViewHolder()适配器类中的方法中编写代码。代码如下:

pvh1.imgmovie.setDefaultImageResId(R.drawable.banner);
pvh1.imgmovie.setImageUrl("image_url", imageLoader);`
4

1 回答 1

0

I do not know NetworkImageView but I advise you to use Picasso to download images from the web, it's great! Use it with a normal ImageView!

Picasso.with(context).load(image_url).into(image_view);

https://github.com/square/picasso

于 2016-11-24T17:22:17.130 回答