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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T03:16:31+00:00 2026-05-21T03:16:31+00:00

Hey guys, I have a listactivity that uses a custom row layout. The layout

  • 0

Hey guys, I have a listactivity that uses a custom row layout. The layout consists of 2 labels, a imageview and a Checkbox.

I’m trying to fire a listener when the Checkbox is checked. The listener I wrote works, but instead of firing for the individual row, it fires for every single row in the listactivity. Like if I check the checkbox in my first row, the dialog will open and work correctly, however the 2nd, 3rd and 4th rows will also “fire”.

Here’s the appropriate area of my code:

public View getView(int position, View convertView, ViewGroup parent) {
    View v = convertView;
    if (v == null) {
        LayoutInflater vi = (LayoutInflater) getContext().getSystemService(
                Context.LAYOUT_INFLATER_SERVICE);
        v = vi.inflate(R.layout.row, null);
    }
    final item o = items.get(position);
    if (o != null) {
        TextView tt = (TextView) v.findViewById(R.id.name);
        TextView bt = (TextView) v.findViewById(R.id.game);
        CheckBox cb = (CheckBox) v.findViewById(R.id.caught);
        if (cb != null && o.getStatus()) {
            cb.setChecked(true);
        } else {
            cb.setChecked(false);
        }
        if (tt != null) {
            tt.setText(o.getName());
        }
        if (bt != null && o.getStatus()) {
            bt.setText("Game: " + o.getGame());
        }

        cb.setOnCheckedChangeListener(new OnCheckedChangeListener() {
            @Override
            public void onCheckedChanged(CompoundButton buttonView,
                    boolean isChecked) {
                o.setStatus(isChecked);
                if (isChecked) {
                AlertDialog.Builder builder2 = new AlertDialog.Builder(
                        context);
                builder2.setTitle("What game are we talkin gabout?");
                builder2.setItems(Checklist.GAMES,
                        new DialogInterface.OnClickListener() {
                            public void onClick(DialogInterface dialog,
                                    int item) {
                                Toast.makeText(context,
                                        Checklist.GAMES[item],
                                        Toast.LENGTH_SHORT).show();
                                o.setGame(Checklist.GAMES[item]);
                                o.setStatus(true);
                                me.notifyDataSetChanged();
                            }
                        });
                builder2.show();
                } else {
                    o.setGame("");
                    o.setStatus(false);
                    me.notifyDataSetChanged();
                }
            }
        });
    }
    return v;

}

Is there a more appropriate place to create my listener for the checkbox?

  • 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-21T03:16:32+00:00Added an answer on May 21, 2026 at 3:16 am

    I think it’s not a good soloution to assing a new OnCheckedChangeListener each time a view is updated with values. It would be better setting a listener only one time to a view at the point where this new view gets inflatet. You can make o-Object available for the listener by putting it into cb’s tag (setTag(..)). Note that the onCheckedChanged event also fires when you set CB’s state by cb.setChecked().

    for example:

    CheckBox cb = null;
    if (v == null) {
        LayoutInflater vi = (LayoutInflater) getContext().getSystemService(
                Context.LAYOUT_INFLATER_SERVICE);
        v = vi.inflate(R.layout.row, null);
        cb = (CheckBox) v.findViewById(R.id.caught);
        // set a listener
        cb.setOnCheckedChangeListener(new OnCheckedChangeListener() {
            @Override
            public void onCheckedChanged(CompoundButton buttonView,
                    boolean isChecked) {
                item o = (item) buttonView.getTag();
                // show your dialog
            }
        });
    }
    
    item o = items.get(position);
    if (o != null) {
        TextView tt = (TextView) v.findViewById(R.id.name);
        TextView bt = (TextView) v.findViewById(R.id.game);
        cb = (CheckBox) v.findViewById(R.id.caught);
        cb.setTag(o);
        // set checked state & text
        // ...
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Hey guys i have a ListActivity... a very simple at that... and it keeps
Hey guys I have an admin page that checks if you are admin before
Hey guys I have one more question lol. I am using a script that
Hey guys I have a query that currently finds the latest comment for each
Hey guys I have a query that selects data and organizes but not in
Hey guys I have an ajax jquery function that receives data from a php
Hey guys, I have a little button functionality that is not erring, but also
hey guys i have a restful xml service where client passes current version of
Hey guys I have a gridview and below it 4 textboxes I'm using to
Hey guys I have an assigned array from mysql results and I simply want

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.