Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4072402
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T16:52:49+00:00 2026-05-20T16:52:49+00:00

I am trying to build a RSS feed reader for my application and I

  • 0

I am trying to build a RSS feed reader for my application and I have a weird problem. To implement this feed I use a ListView that I populate from an ArrayList I customised.

I know that the ArrayList is full with all the fields I want to display (I print all of them in my Logcat), but when I run the app, not all the cells in my ListView fill with the information they are supposed to, the major part of them display TextView. It seems to be quite random, but the one that always works correctly is the first element. The other ones some times do.

And another strange thing is that the OnItemClickListener works perfectly, even I am unable to see the information in my elements.

Thank you very much in advanced.

I attach my getView code:

public View getView(int position, View convertView, ViewGroup parent) {
    View v = convertView;
    AdapterWrapper wrapper;
    if (v == null) {
        LayoutInflater li = (LayoutInflater) this.getContext()
                .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        v = li.inflate(R.layout.itemrow, null);
        wrapper = new AdapterWrapper(v, cont);
        v.setTag(wrapper);
    } else {
        wrapper = (AdapterWrapper) convertView.getTag();
        RssItem o = this.getItem(position);
        if (o != null)
            wrapper.populateFrom(o);
        parent.refreshDrawableState();
    }
    return v;
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T16:52:49+00:00Added an answer on May 20, 2026 at 4:52 pm

    Probably you aren’t handling the recycled view case properly in getView.

    When you check to see that convertView != null, you still need to actually populate the information in your convertView. The actual view hierarchy will be there, but the information will be from an old, recycled view associated with a different row.

    For more specific information, please post your getView code.

    Edit – I think you need to call wrapper.populateFrom(o) whether or not you have a convertView. Try moving that part outside of the if statement:

     if (v == null) {
        LayoutInflater li = (LayoutInflater) this.getContext()
                .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        v = li.inflate(R.layout.itemrow, null);
        wrapper = new AdapterWrapper(v, cont);
        v.setTag(wrapper);
     } else {
        wrapper = (AdapterWrapper) convertView.getTag();
     }
     RssItem o = this.getItem(position);
     if (o != null)
        wrapper.populateFrom(o);
     parent.refreshDrawableState(); // not sure what this is doing
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to build an Eclipse application that would work with a linux/motif
I'm trying to find a library that can read a given RSS/Atom feed, and
I am trying to build an iPhone App, where I read an RSS feed
I am trying to parse an rss feed that is using the well formed
Im trying to build a small frame that displays an image. My problem is
Trying to build a GUI application in Java/Swing. I'm mainly used to painting GUIs
I'm trying to build a simple User Template system so that my users can
I'm trying to build a polling service in Java that checks for updates from
I've been trying to grab the Digg rss feed and parse its contents into
I have this Ruby block: status = '' build.parse do |entry| puts parsing an

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.