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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T08:10:08+00:00 2026-06-10T08:10:08+00:00

I have ListView which is customized to have a EditText box and a Button

  • 0

I have ListView which is customized to have a EditText box and a Button in it. The ListView displays text boxes as visible but the button as invisible. When the user clicks on an item in the ListView, the Button’s made visible. I have written the following code for the ListView:

public void onItemClick(AdapterView<?> list, View view, int position, long id) {    
    view.findViewById(R.id.button).setVisibility(View.VISIBLE);
}

The above code functions in the case when the first item’s Button and the second item’s Button are visible.

My problem:
When the next item in the ListView is clicked, the Button from the previous item should become invisible as the current item’s Button becomes visible. So how do I update the view of the previous item?

  • 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-06-10T08:10:10+00:00Added an answer on June 10, 2026 at 8:10 am

    Store the previous row in a class variable:

    View previous;
    ...
    
    public void onItemClick(AdapterView<?> list, View view, int position, long id) {    
        if(previous != null)
            previous.setVisibility(View.INVISIBLE);
    
        // Set the current button to visible while saving it for the next click 
        previous = view.findViewById(R.id.button);
        previous.setVisibility(View.VISIBLE);
    }
    

    Addition from comments

    You’re right. The adapter’s view recycling is affecting the other rows so let’s extend whatever adapter you are using and override its getView() method:

    public int selectedRow = -1;
    ...
    
    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        View view = super.getView(position, convertView, parent);
    
        // Here, either use findViewById() (slower) or the ViewHolder method (faster) to load the button:
        // Button button = ...
    
        if(position == selectedRow) 
            button.setVisibility(View.VISIBLE);
        else
            button.setVisibility(View.GONE);
    
        return view;
    }
    

    And in your onItemClick() method add a line like this:

    adapter.selectedRow = position;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a customized TabView which displays a ListActivity , but everytime I click
I have a listview which displays a lot of info, but when it's empty
I have a ListView which displays a list of string values. I want to
I have a listview in which a user adds his comments on a particular
Hallo all, I have a ListView which contains a Button in each line. The
I have listView in which I inflate a row contain textview and button now
I have a ListView which displays information about some entities (all of the same
I have a listview which displays items retrieved from the webpage. Each item in
I am creating a customized listview header that has the header text but also
I have a listview which contains N no. of items. When user scroll down

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.