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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T23:49:47+00:00 2026-06-07T23:49:47+00:00

I want to show the contacts stored in android mobile while typing text in

  • 0

I want to show the contacts stored in android mobile while typing text in a EditText box. I want to display the contacts below the EditText box like the messaging screen. I can retrieve the contacts using ContactsContract, but I don’t know how to display like the messaging screen in Android. Does anybody know something about this?

My current code:

 Cursor cur = cr.query(ContactsContract.Contacts.CONTENT_URI,
                    null, null, null, null);
 if (cur.getCount() > 0) {
    while (cur.moveToNext()) {
        String id = cur.getString(
                        cur.getColumnIndex(ContactsContract.Contacts._ID));
        System.out.println("contactsID-->>>"+id);
        String name = cur.getString(
                        cur.getColumnIndex(ContactsContract.Contacts.DISPLAY_NAME));
        System.out.println("contactsName-->>>"+name);

        if (Integer.parseInt(cur.getString(cur.getColumnIndex(ContactsContract.Contacts.HAS_PHONE_NUMBER))) > 0) {
            Cursor pCur = cr.query(Contacts.Phones.CONTENT_URI, null, 
                                   Contacts.Phones.PERSON_ID +" = ?", 
                                   new String[]{id}, null);
            int i=0;
            int pCount = pCur.getCount();    

            while (pCur.moveToNext()) {
                String phoneNum = pCur.getString(
                                       pCur.getColumnIndex(Contacts.Phones.NUMBER));
                System.out.println("PhoneNum-->>>"+phoneNum);
            }

            // Query phone here.  Covered next
        }
    }
}
  • 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-07T23:49:48+00:00Added an answer on June 7, 2026 at 11:49 pm

    You need to use AutoCompleteTextView and use the contact names read from ContactsContract to populate the adapter. Code:

        String CONTACTS[] = null;
        Cursor contactsCursor  = getContentResolver().query(ContactsContract.Contacts.CONTENT_URI, new String[]{Contacts.DISPLAY_NAME}, null, null, null);
        if(contactsCursor!=null){
            CONTACTS = new String[contactsCursor.getCount()];//(contactsCursor.getCount())];
            int i=0;
            while(contactsCursor.moveToNext()) {
                CONTACTS[i] = contactsCursor.getString(contactsCursor.getColumnIndex(Contacts.DISPLAY_NAME));
                i++;
            }
        }
        ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,
                android.R.layout.simple_dropdown_item_1line, CONTACTS);
        AutoCompleteTextView textView = (AutoCompleteTextView)
                findViewById(R.id.autocompleteTextView);
        textView.setAdapter(adapter);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a textBox(EditText1) in android (Vs-2.3.3) I want to show my own mobile
So i want to show a contacts list and for that I have transformed
I have a application and I want to show the contacts are sorted by
hii I want show a pop up Dialog box when i click on to
The problem I want to solve: Get all the contacts info like name and
I want to show image of contacts(form contact list) in my application. How to
I have a recipient picker view. But I want to display only contacts that
i want to show the name and number of the person stored in contact
I want to do something like paging. Let's suppose we have 100 contacts in
I want that screenCheck function show run only after Validation of #contact_email . But

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.