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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T09:22:06+00:00 2026-05-27T09:22:06+00:00

Is there a possibility in Android to implement a Contacts form like it’s realised

  • 0

Is there a possibility in Android to implement a Contacts form like it’s realised on the iPhone?

So, i mean, is there a default Android Contacts-Site in the framework that can be used?
It doesn’t have to look like on the iPhone.

enter image description here

I want to start this Activity with Extras(i.putExtra) which contain the Contact Data, so that the Contact that’s selected in the previous Activity will be shown in these fields. After this, there should be the possibility to add all this information to the Contacts.

  • 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-27T09:22:07+00:00Added an answer on May 27, 2026 at 9:22 am

    Allow the user to select a contact using this..

    <uses-permission android:name="android.permission.READ_CONTACTS"/>
    

    2) Calling the Contact Picker

    Within your Activity, create an Intent that asks the system to find an Activity that can perform a PICK action from the items in the Contacts URI.

    Intent intent = new Intent(Intent.ACTION_PICK, ContactsContract.Contacts.CONTENT_URI);
    

    Call startActivityForResult, passing in this Intent (and a request code integer, PICK_CONTACT in this example). This will cause Android to launch an Activity that’s registered to support ACTION_PICK on the People.CONTENT_URI, then return to this Activity when the selection is made (or canceled).

     startActivityForResult(intent, PICK_CONTACT);
    
    
    @Override
    public void onActivityResult(int reqCode, int resultCode, Intent data) {
    super.onActivityResult(reqCode, resultCode, data);
    
    switch (reqCode) {
    case (PICK_CONTACT) :
    if (resultCode == Activity.RESULT_OK) {
     Uri contactData = data.getData();
     Cursor c =  managedQuery(contactData, null, null, null, null);
     if (c.moveToFirst()) 
     {
       String name = c.getString(c.getColumnIndexOrThrow(People.NAME));
    
     }
    }
    break;
    }
    }
    

    Now once a contact is selected you will have the information you need to fill in your edittexts and all above.

    This is en excellent tutorial on how to do this. Good Luck! This should get you well on your way!
    Working with Androind contacts

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

Sidebar

Related Questions

There is any possibility to save data by android app, that user are not
Is there possibility of creating android application that sends a mail to gmail account
is there something like dialog's order in Android? I explain what I mean. There
Is there any possibility that GetPropInfo returns nil even if the given class is
Is there any possibility to select a option field by default in a g:select
Is there any possibility to use old Ada code in Android? I have an
Is there any possibility in Android to align a dialog Activity (activity with a
Is there any possibility in Android 2.1 to detect is audio file DRM-protected? Thanks.
Is there possibility to add some custom actions to Android phone calls log? For
if there possibility to access the caller tune in android. please provide any code

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.