1

我正在使用带有自定义适配器的 ListView,该适配器获取 JSONArray(来自 Facebook 请求)。每个 ListView 项都有两个 TextView 和一个或两个 ImageView,具体取决于帖子类型。每个列表项还有一个我称之为“评论框”的 LinearLayout。

当我在 xml 中定义列表项时,评论框仅包含标题的 TextView(“评论和喜欢”)。在自定义适配器中,解析评论数据(我希望如此),并以编程方式为每个评论添加 TextViews,这样我就不会无缘无故地创建和膨胀空的 TextViews。

我遇到的问题,这似乎是一个常见的 ListView 回收问题,是评论框在滚动列表时不保留其内容。我查看了 JSON 数据,数组中的每个对象都有相同的“评论”字段,所以我不认为数据中的任何内容都为 null,特别是如果所有其他数据加载和填充都很好. 我不知道我做错了什么,因为其他一切都有效,但这个。这是我的适配器的 getView() 方法。

public View getView(int position, View convertView, ViewGroup parent) {

    final ViewHolder holder;

    try {
        jsonObject = getItem(position);
        jsonFrom = jsonObject.getJSONObject("from");
        postType = jsonObject.getString("type");
        posterName = jsonFrom.getString("name");
        posterID = jsonFrom.getString("id");
        posterPhoto = "http://graph.facebook.com/" + posterID + "/picture?type=square";
        if (jsonObject.has("name")) {
            posterMessage = jsonObject.getString("name");
        }
        else if (jsonObject.has("story")){
            posterMessage = jsonObject.getString("story");
        }
        else if (jsonObject.has("message")){
            posterMessage = jsonObject.getString("message");
        }
        else{
            posterMessage = "No message.";
        }
        if(jsonObject.has("picture")){
            posterImageURL = jsonObject.getString("picture");
        }
        commentsData = jsonObject.getJSONObject("comments");
        commentsCount = commentsData.getInt("count");


    } catch (JSONException e) {
        e.printStackTrace();
    }

    if (convertView == null) {
        LayoutInflater inflater = (LayoutInflater) activity.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        convertView = inflater.inflate(R.layout.post_holder,null);
        holder = new ViewHolder();
        holder.posterName = (TextView) convertView.findViewById(R.id.posterName);
        holder.posterMessage = (TextView) convertView.findViewById(R.id.posterMessage);
        holder.posterProfilePhoto = (ImageView) convertView.findViewById(R.id.posterProfilePic);
        holder.posterImage = (ImageView) convertView.findViewById(R.id.posterImage);
        holder.commentsBox = (LinearLayout) convertView.findViewById(R.id.commentsBox);
        if(postType.equals("photo")){
            holder.posterImage.setVisibility(View.VISIBLE);
        }
        if(commentsCount!=0 && commentsCount!=null){
            try {
                commentsArray = commentsData.getJSONArray("data");
                for(int index = 0; index<commentsArray.length(); index++){
                    comment = commentsArray.getJSONObject(index);
                    commenterName = comment.getJSONObject("from").getString("name");
                    commenterId = comment.getJSONObject("from").getString("id");
                    commentMessage = comment.getString("message");
                    TextView commentMessageHolder = new TextView(activity);
                    commentMessageHolder.setText(Html.fromHtml("<b>"+commenterName+"</b>"+"  "+commentMessage));
                    holder.commentsBox.addView(commentMessageHolder, index+1);
                }
            } catch (JSONException e) {
                e.printStackTrace();
            }


        }

        convertView.setTag(holder);
    } 
    else {
        holder = (ViewHolder) convertView.getTag();
        if(postType.equals("photo")){
            holder.posterImage.setVisibility(View.VISIBLE);
        }
        else{
            holder.posterImage.setVisibility(View.GONE);
        }
    }

    if (jsonObject != null) {
        holder.posterName.setText(posterName);
        if (posterMessage != null) {
            holder.posterMessage.setText(posterMessage);
        } else {
            holder.posterMessage.setText("No message for this post.");
        }

        imageLoader.displayImage(posterPhoto,holder.posterProfilePhoto);

        if(postType.equals("photo")){
            if(posterImageURL != null){
                holder.posterImage.setTag(posterImageURL);
                imageLoader.displayImage(posterImageURL, holder.posterImage);
            }
        }
    }

    return convertView;

}
4

1 回答 1

1

我遇到的问题,这似乎是一个常见的 ListView 回收问题,是评论框在滚动列表时不保留其内容。

主要问题是您TextViews convertView在is的情况下构建评论null,当用户滚动时,ListView您最终会得到那些最初设置的行视图(带有评论),您不会针对不需要的位置进行修改。将注释for循环移到您检查的 if 子句convertView之外null

此外,您可能希望缓存该 json 解析,更不用说您需要考虑不要过度添加评论TextViews,因为回收的行视图可能已经有自己的评论TextViews

于 2012-12-26T16:24:38.250 回答