以下是我用来显示包含电影图像和电影标题的电影项目的适配器的代码。
public class MovieAdapter extends RecyclerView.Adapter<MovieAdapter.MovieViewHolder> {
private List<Movie> movieList;
public MovieAdapter(List<Movie> movieList){
this.movieList = movieList;
}
@Override
public MovieViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
Context context = parent.getContext();
LayoutInflater inflater = LayoutInflater.from(context);
View view = inflater.inflate(R.layout.movie_item,parent,false);
return new MovieViewHolder(view);
}
@Override
public void onBindViewHolder(final MovieViewHolder holder, int position) {
Movie movie = movieList.get(position);
holder.mv_name.setText(movie.getName());
class ImageDownloadTask extends AsyncTask<String,Void,Bitmap>{
@Override
protected Bitmap doInBackground(String... strings) {
Bitmap bitmap = null;
URL url = createUrl(strings[0]);
Log.v("stringurl",strings[0]);
try {
bitmap = makeHttpRequest(url);
} catch (IOException e) {
}
return bitmap;
}
@Override
protected void onPostExecute(Bitmap bitmap) {
holder.mv_img.setImageBitmap(bitmap);
}
private URL createUrl(String StringUrl){
URL url = null;
try {
url = new URL(StringUrl);
} catch (MalformedURLException e) {
return null;
}
return url;
}
private Bitmap makeHttpRequest(URL url) throws IOException{
HttpURLConnection urlConnection = null;
InputStream stream = null;
Bitmap bitmap = null;
try {
urlConnection = (HttpURLConnection) url.openConnection();
urlConnection.setRequestMethod("GET");
urlConnection.setConnectTimeout(10000);
urlConnection.setReadTimeout(15000);
urlConnection.connect();
stream = urlConnection.getInputStream();
bitmap = BitmapFactory.decodeStream(stream);
//Log.v("image:",bitmap.toString());
return bitmap;
}
catch (IOException e){
}
finally {
if (urlConnection != null) urlConnection.disconnect();
if (stream != null) stream.close();
}
return bitmap;
}
}
new ImageDownloadTask().execute(movie.getImg());
}
@Override
public int getItemCount() {
return movieList == null ? 0 : movieList.size();
}
class MovieViewHolder extends RecyclerView.ViewHolder{
ImageView mv_img;
TextView mv_name;
public MovieViewHolder(View itemView){
super(itemView);
mv_img = (ImageView) itemView.findViewById(R.id.mv_img);
mv_name = (TextView) itemView.findViewById(R.id.mv_name);
}
}
}
向下滚动图像时正在显示正在显示的其他电影的图像。例如,对于电影,将显示另一个电影图像,并且在第二个之后还显示另一个电影图像,并且在一系列不同的图像之后以这种方式正确显示图像正在显示。
我正在从响应inBindViewHolder方法获取的Url中下载图像。如何解决这个问题?
问题
这里的事情是要意识到ViewHolders是重用对象的池,当你滚动时,将出现一个重用的ViewHolder,并显示之前加载的图像。
通过使用Picasso或Glide或类似代码,您还可以使用缓存和效果等其他功能来节省大量代码。
解
首先,您可以使用像毕加索这样的图书馆
compile 'com.squareup.picasso:picasso:2.5.2'
然后在您的recyclerview上查看绑定视图
Picasso.with(holder.imageView.getContext()).cancelRequest(holder.imageView);
Picasso.with(holder.imageView.getContext()).load("http://image.com/image.png").into(holder.imageView);
第一行代码将停止加载任何先前的图像。第二行将加载当前图像。
将"http://image.com/image.png"
替换为您的图片网址。它需要字符串,URL等...
了解更多关于Picasso here的信息
我也搜索了这个解决方案,并且从Doron Yakovlev-Golani回答我为自己做了一个解决方案,因为我的声誉很低,所以我无法添加评论。下面是我的解决方案,这里当我在ImageView中添加一个图像时,我还在ImageView中添加了一个ContentDescription作为参考,以供将来用于确定ViewHolder调用时需要显示哪个图像。 ContentDescription是String的当前ListView位置。这是两个条件,第一个用于检查先前添加或未添加的图像,如果先前未添加图像,我添加了图像。第二个图像已经添加到ImageView中,所以我通过调用ImageView ContentDescription检查需要加载哪个图像,如果ContentDescription匹配当前位置,则意味着我需要将当前位置图像添加到我的列表中的ImageView。
在你的onViewHolder中你可以像这样使用:
//checking it is first time or not
if (holder.mv_img.getContentDescription() == null) {
//adding current position for loading current position image
imageView.setContentDescription(position + "");
}
if (holder.mv_img.getContentDescription().equals(position + "")) {
holder.mv_img.setImageBitmap(userLogoUri);
}