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

  • Home
  • SEARCH
  • 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 7400877
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T04:19:06+00:00 2026-05-29T04:19:06+00:00

I am trying to create a program. There is also a function I want

  • 0

I am trying to create a program. There is also a function I want to ask. I have a button and a textview. I want that when I press the button, my phonebook is opened so that I could select a contact number. After finished, the selected contact number will be displayed in the textview. Currently, I have no idea how to do that.

  • 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-29T04:19:07+00:00Added an answer on May 29, 2026 at 4:19 am

    on the onClick call this..

    Intent intent = new Intent(Intent.ACTION_PICK,Uri.parse("content://contacts/"));
                startActivityForResult(intent, 1);
    

    override the onActivityResult method, use Cursor to move to the selected contact and display it in your textview

    This could look something like this…

    if (resultCode == Activity.RESULT_OK) 
    {
        Uri contactData = data.getData();
         Cursor c = managedQuery(contactData, null, null, null, null);
         c.moveToFirst();
         String name;
         name = c.getString(c.getColumnIndexOrThrow(People.NAME));
        TextView tv;
        tv = (TextView)findViewById(R.id.selected_contact_textview);
        tv.setText(name);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have been trying to create a Ruby program that will be running online
I'm trying to create a program that takes a text file of c++ code
I am trying to create a program that will do some simple calculations, but
I'm currently trying to create a program that estimates location based on signal strength.
I have been trying to create a simple program with Python which uses OpenCV
I have a program that simulates best-fit memory management. Basically, while there are available
I have a problem with my WPF program. I'm trying to create an object
I an trying to create a program that will detect a face in a
I am trying to create a program similar to Folder Lock which prevents users
I'm trying to create a python program (using pyUNO ) to make some changes

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.