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 4539570
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T14:57:52+00:00 2026-05-21T14:57:52+00:00

I have the following getView in the BaseAdapter. @Override public View getView(int position, View

  • 0

I have the following getView in the BaseAdapter.

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

    LinearLayout itemLo;

    if (convertView != null) {
        itemLo = (LinearLayout) convertView;
    } else {
        itemLo = (LinearLayout) LayoutInflater.from(mContext.getApplicationContext()).
inflate(R.layout.item, parent, false);
    }

    View v1 = itemLo.findViewById(R.id.view1);
    View v2 = itemLo.findViewById(R.id.view2);

    if (position == 0) {
       v1.setVisibility(View.GONE);
       v2.setText("Start");
    } else {
       v1.setText("" + position);
       v2.setText("" + position);
    }

    return convertView;
}

When it is the first row (row 0), I hide v1 in row 0. My worry is that, after row 0 is scrolled out of the window, the converView for row 0 will be reused by other rows. The issue is that, v1 in row 0 has been set to View.GONE in row 0. If other rows reuse the converView for row 0, do I have to set View.Visible to v1? My test shows that I don’t have to reset visibility for v1 in the convertView. So I am confused. Doesn’t converView conserves the visibility property for each view in it, when the convertView is reused?

Thanks.

  • 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-21T14:57:53+00:00Added an answer on May 21, 2026 at 2:57 pm

    You must use a condition based on your data instead of use current position.

    i.e.

    MyClass c = (MyClass) getItem(position);
    ....  
    if (c.isVisible()) {
       v1.setText("" + position);
       v2.setText("" + position);
    } else {
       v1.setVisibility(View.GONE);
       v2.setText("Start");
    }
    ...
    

    (c.isVisible) or any other condition that you like.

    converView is for reusing stuff, that mean you must set/reset every property that may be changed before in previous call to getView method.

    do I have to set View.Visible to v1?

    Yes

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

Sidebar

Related Questions

in Android, I have list that I fill using the following code @Override public
I have following plist: <?xml version=1.0 encoding=UTF-8?> <!DOCTYPE plist PUBLIC -//Apple//DTD PLIST 1.0//EN http://www.apple.com/DTDs/PropertyList-1.0.dtd>
I have created a Custom preference which has the following constructor public CoordinatesPreference(Context context,
I have the following code in Main.java : public class Main extends Activity implements
I have written following to show my data into grid view. This is the
Here i have the following code below :- public class OrderActivity extends ListActivity implements
I have a ListView with the following adapter: private class ListAdapter extends BaseAdapter {
In a form, I have the following element: $email = new Zend_Form_Element_Text('username'); $email ->setLabel($this->getView()->l('E-mail'))
I have the following code, see below. I want to add a View programmatically
I have done my custom ListView, the xml was following: <?xml version=1.0 encoding=utf-8?> <LinearLayout

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.