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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T08:17:11+00:00 2026-05-26T08:17:11+00:00

I am new to Android, I am trying to do a simple application where

  • 0

I am new to Android, I am trying to do a simple application where in I have to display a list of contacts available in phonebook in a ListView in the application, I am tryring to add checkbox t each item. When the user checks the checkbox, I want to retrive the item. So far, I am able to display the list but its unclear how to check for the checkbox check event.

My code is as follows:

XML files:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    >

<ListView 
    android:id="@android:id/android:list" 
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_weight = "1"
    android:choiceMode="multipleChoice" android:clickable="true"/>

<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id ="@+id/savebutton"
    android:text = "save"
    />

</LinearLayout>
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    >

<ListView 
    android:id="@android:id/android:list" 
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_weight = "1"
    android:choiceMode="multipleChoice" android:clickable="true"/>

<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id ="@+id/savebutton"
    android:text = "save"
    />

</LinearLayout>

Source Code:

public class testcontacts extends ListActivity 
{
    private ListAdapter adapter = null;

    @Override
    public void onCreate(Bundle savedInstanceState) 
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        //CheckBox box = (CheckBox)findViewById(R.id.checkbox);
        //box.setFocusable(false);

        ContentResolver cr = getContentResolver();
        Cursor cur = cr.query(ContactsContract.Contacts.CONTENT_URI,
                null, null, null, null);

        adapter = new SimpleCursorAdapter
        (this, R.layout.contact_entry, cur,new String[] {ContactsContract.Contacts.DISPLAY_NAME}, new int[] {R.id.contactEntryText});   
        setListAdapter(adapter);

        ListView list = getListView();
        list.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE);

    } 
}
  • 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-26T08:17:12+00:00Added an answer on May 26, 2026 at 8:17 am

    You can use the getCheckedItemPosition method to get the position of the item that is checked.Once you have the position,you can use the findViewById to retrieve the item and the isChecked method to check.
    Here’s an example :

         int pos = list.getCheckItemPosition(); //list being a ListView previously defined
         //Look for the checked CheckBox in the particular position
         CheckBox checkBox = (CheckBox)findViewById(pos);
         if (checkBox.isChecked()) {
         //Do something here
     }
    

    Hope it helped.

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

Sidebar

Related Questions

I am trying to create a simple android application. I am new to Android
I'm trying to create a simple list application for my first app. I have
hey, im new to android development and trying to make my first application. What
I'm new to Android development. I'm trying to get a simple HelloWorld app going
I'm trying to finally add UI tests to my Android application, to increase coverage
I am new for android development. I am trying read and write contacts to
when i am trying to run a simple android application in netbeans 6.9.1 i
I'm new to android and I'm trying to make a simple android program that
I am trying to write a simple android application to help interpret some lab
I have been trying to create a simple application that will let the user

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.