在向上滚动列表之后从NetworkImageView丢失图像

时间:2015-06-15 16:29:47

标签: android android-listview android-volley networkimageview

我有一个 ListView ,使用Volley Json抓取与之关联的图片的新闻。 首先它会加载所有内容但是当我滚动列表并返回时,它有时会显示图像,有时则不会。滚动2-3次后listview 丢失所有图像。使用我的测试应用仅使用操作栏标签),相同的程序完美,所以我不知道发生了什么。谢谢您的时间。

注意:我使用开发者网站的MySingletonLruBitmapCache。我的应用程序的GUI类似于Play Store,即带有标签的导航抽屉。我搜索了这样的问题,但没有找到直接答案。对不起,如果这是一个愚蠢的问题。

如果我使用ViewHolder然后该问题得到解决,但如果不存在URL,我无法以编程方式删除NetworkImageView。 我不希望为没有图片的行设置占位符图片

这是我的行布局文件:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="8dp">

<com.android.volley.toolbox.NetworkImageView
    android:id="@+id/cat_thumbnail"
    android:layout_width="80dp"
    android:layout_height="80dp"
    android:layout_alignParentLeft="true"
    android:layout_marginRight="8dp"
    />

<TextView
    android:id="@+id/cat_title"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textSize="16dp"
    android:layout_alignTop="@id/cat_thumbnail"
    android:layout_toRightOf="@id/cat_thumbnail"
    />

<TextView
    android:id="@+id/cat_paper"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_below="@id/cat_title"
    android:layout_marginTop="1dip"
    android:layout_toRightOf="@+id/cat_thumbnail"
    android:textSize="15dip" />

适配器类

private Activity activity;
private LayoutInflater inflater;
private List<NewsArticles> newsArticlesItems;
ImageLoader imageLoader;

public NewsAdapter(Activity activity, List<NewsArticles> newsArticlesItems)
{
    this.activity = activity;
    this.newsArticlesItems = newsArticlesItems;
}

@Override
public int getCount() {
    return newsArticlesItems.size();
}

@Override
public Object getItem(int location) {
    return newsArticlesItems.get(location);
}

@Override
public long getItemId(int position) {
    return position;
}

@Override
public View getView(int postion, View convertView, ViewGroup viewGroup) {

    if(inflater == null)
    {
        inflater = (LayoutInflater) activity.getSystemService(activity.LAYOUT_INFLATER_SERVICE);
    }
    if(convertView == null)
    {
        convertView = inflater.inflate(R.layout.cat_list_items, null);
    }
    if (imageLoader == null)
        imageLoader = MySingleton.getInstance(activity).getImageLoader();
    //Article image
    NetworkImageView thumbnail = (NetworkImageView) convertView.findViewById(R.id.cat_thumbnail);

    //Article title
    TextView title = (TextView) convertView.findViewById(R.id.cat_title);

    //Newspaper Name
    TextView newspaperName = (TextView) convertView.findViewById(R.id.cat_paper);

    //


    if(!URLUtil.isValidUrl(newsArticlesItems.get(postion).getThumbnailUrl()))
    {
        thumbnail.setVisibility(View.GONE);
    }
    /*if(newsArticlesItems.get(postion).getThumbnailUrl()=="")
    {
        thumbnail.setVisibility(View.GONE);
    }*/
    else
    {
        thumbnail.setImageUrl(newsArticlesItems.get(postion).getThumbnailUrl(), imageLoader);
    }

    title.setText(newsArticlesItems.get(postion).getTitle());
    newspaperName.setText(newsArticlesItems.get(postion).getNewspaperName());

    return convertView;
}

1 个答案:

答案 0 :(得分:1)

在else块中尝试这样

else
    {
        thumbnail.setVisibility(View.VISIBLE);//add this
        thumbnail.setImageUrl(newsArticlesItems.get(postion).getThumbnailUrl(), imageLoader);
    }