ListView在不应该有一行的行上显示图像

时间:2017-07-04 07:46:18

标签: android listview picasso

我有一个listView,它是使用我创建的自定义适配器实现的,其中包含一个imageView。在整个列表中,每个项目可能有也可能没有附加图像(这是没有必要的)。 要将图像加载到imageView,我在getView方法中使用Picasso库。

对于有关联图像的行,我的代码工作正常。 问题是当显示列表时,不应该有图像的行显示一个。

这是我的getView()方法:

public View getView(int position, @Nullable View convertView, @NonNull ViewGroup parent) {
    ReportHolder holder = null;

    if(convertView==null){
        LayoutInflater inflater=((Activity)context).getLayoutInflater();
        convertView = inflater.inflate(layoutResourceId,null);
        holder = new ReportHolder();
        holder.imageReportView=(ImageView)convertView.findViewById(R.id.reportImage);
        holder.reportLocation=(TextView) convertView.findViewById(R.id.report_location);
        holder.reportDescription=(TextView) convertView.findViewById(R.id.report_description);
        holder.reportStatus=(TextView) convertView.findViewById(R.id.report_status);
        convertView.setTag(holder);
    }
    else
        holder=(ReportHolder)convertView.getTag();

    ReportData data = reportDataList.get(position);
    holder.reportLocation.setText(data.address);
    holder.reportDescription.setText(data.description);
    holder.reportStatus.setText(data.status);
    Picasso picasso = Picasso.with(this.context);
    if(data.url!=null)
        picasso.load("https://fourth-landing-159416.appspot.com/gcs/"+data.url+"_thumbnail").into(holder.imageReportView);
    return convertView;
}

我知道我很好地获取了我的信息,因为除了图片之外,行之间没有信息重复。那我在这里错过了什么?

FMI我的适配器是在嵌套的ASyncTask中创建的,因为在将其插入适配器之前,我需要通过HTTP连接获取信息:

@Override
    protected void onPostExecute(final String result) {
        mFeedTask = null;
        mFeed.removeFooterView(mProgressView);
        if(result!=null){
            if(result.contains("HTTP error code: 403")){
                Toast.makeText(mContext,"Token invalid. Please login again.", Toast.LENGTH_SHORT).show();
            }
            else if(result.equals("[]"))
                Toast.makeText(mContext,"Nothing more to show.", Toast.LENGTH_SHORT).show();
            else{
                try {
                    Gson gson = new Gson();
                    JSONArray reports = new JSONArray(result);
                    LinkedList<ReportData> tmpList = new LinkedList<ReportData>();
                    for(int i=0; i < reports.length(); i++){
                        ReportData data = gson.fromJson(reports.getString(i), ReportData.class);
                        tmpList.add(data);
                    }
                    reportDataList.addAll(tmpList);
                    if(reportDataList.size()==tmpList.size()){
                    // First, we set the empty adapter and set up the item click listeners
                    adapter = new CustomAdapter(mContext,R.layout.custom_feed_row,reportDataList);
                    mFeed.setAdapter(adapter);
                    }
                    else {
                        updateTriggered=false;
                        adapter.notifyDataSetChanged();
                    }
                } catch (JSONException e) {
                    e.printStackTrace();
                }
            }
        }
    }

由于我需要传输相对大量的信息,因此我必须多次调用此任务。在第一次调用时,创建了适配器,从那时起调用notifyDataSetChanged来更新它。

很多帮助得到了赞赏!

我提前感谢你! 干杯

1 个答案:

答案 0 :(得分:0)

因为listview会回收相同的视图,所以如果此行不应包含图像,则应删除图像

在你的getView中执行类似的操作:

if(data.url!=null)
        picasso.load("https://fourth-landing-159416.appspot.com/gcs/"+data.url+"_thumbnail").into(holder.imageReportView);
    else {
holder.imageReportView.setImageDrawable(null);;
    }