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

  • SEARCH
  • Home
  • 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 7573191
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T16:07:11+00:00 2026-05-30T16:07:11+00:00

Currently, I have a custom list adapter that has some logic that hide/show a

  • 0

Currently, I have a custom list adapter that has some logic that hide/show a certain ImageView in a row depending on a variable.

Initially, the logic works when the app first launches. (ImageView is hidden/shown accordingly).

But once I scroll the screen up and down, eventually, all the row’s ImageView is hidden forever.

Does anyone know how to solve this problem?

here is my adapter:

public View getView(int position, View convertView, ViewGroup parent) {
        View row = convertView;
        PostHolder holder = null;

        if(row == null)
        {
            LayoutInflater inflater = ((Activity)context).getLayoutInflater();
            row = inflater.inflate(layoutResourceId, parent, false);

            holder = new PostHolder();
            holder.postThumb = (ImageView)row.findViewById(R.id.post_Thumb);
            holder.postComments = (TextView)row.findViewById(R.id.post_comments);
            holder.postInfo = (TextView)row.findViewById(R.id.item_subtitle);
            holder.postScore = (TextView)row.findViewById(R.id.post_score);
            holder.postTitle = (TextView)row.findViewById(R.id.item_title);
            holder.postThumbHolder = (LinearLayout)row.findViewById(R.id.post_Thumb_holder);
            row.setTag(holder);
        }
        else
        {
            holder = (PostHolder)row.getTag();
        }

        HashMap<String, String> post = data.get(position);

        if(post.get("thumbnail").equals("default") || post.get("thumbnail").equals("self")){
            holder.postThumbHolder.setVisibility(View.GONE);
        }

        holder.postComments.setText(post.get("comments"));
        holder.postInfo.setText(post.get("info"));
        holder.postScore.setText(post.get("score"));
        holder.postTitle.setText(post.get("title"));

        return row;
    }


    static class PostHolder
    {
        LinearLayout postThumbHolder;
        ImageView postThumb;
        TextView postComments;
        TextView postScore;
        TextView postTitle;
        TextView postInfo;      
    }
  • 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-30T16:07:12+00:00Added an answer on May 30, 2026 at 4:07 pm

    Set visibility View.VISIBLE to postThumbHolder somewhere. In the else block of your
    if (post.get...
    clause.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I currently have a simple list view adapter that holds two rows of text.
I'm looking into some XSS prevention in my Java application. I currently have custom
I currently have a custom TabItem which has a custom header, which is defined
I have custom classes that I currently instantiate within App.xaml as resources. I want
Currently I have the following code for a project that represents some probability trees
I have a list of custom objects that I am loading into an ActivityList
I have a ListView that uses a custom layout that has 5 child View
I currently have a custom listview where each item on the list contains two
I have a custom form that has 4 panels on it edges. I would
I currently have a custom session handler class which simply builds on php's session

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.