How to call Android contacts list AND Select one phone number from its details screen?

匿名 (未验证) 提交于 2019-12-03 08:33:39

问题:

I have read the already posted solutions, but they dont tell how do I use system's contact details screen to select any ONE number to use? I am developing an sms sending android app which offers to choose contacts of the phone and the number a user wants to use to send to....

So far I have not been able to find anything about choosing any one number. Does it only has to be done programatically? retrieving all numbers from database and sending sms to it?

Regards

Sherry

回答1:

phew, it took me some time, but i think i have the answer you need (even if it's too late already, but i'll still post it as a reference for others).

in the application i'm currently developing the user may enter a phone number into an EditText or click on a button and select a person from the phones address book. if the person has more than one phone number, there's a drop down list where he can select exactly one of them.

@Override protected void onCreate(Bundle savedInstanceState) {     super.onCreate(savedInstanceState);     setContentView(R.layout.contact_picker);      // this opens the activity. note the  Intent.ACTION_GET_CONTENT     // and the intent.setType     ((Button)findViewById(R.id.pick_person)).setOnClickListener( new OnClickListener() {         @Override         public void onClick(View v) {             // user BoD suggests using Intent.ACTION_PICK instead of .ACTION_GET_CONTENT to avoid the chooser             Intent intent = new Intent(Intent.ACTION_GET_CONTENT);             // BoD con't: CONTENT_TYPE instead of CONTENT_ITEM_TYPE             intent.setType(ContactsContract.CommonDataKinds.Phone.CONTENT_ITEM_TYPE);             startActivityForResult(intent, 1);                         }     }); } 

now, as soon as the user selects a contact (and probably chooses one of several phone numbers), you can retrieve the data the normal way:

@Override protected void onActivityResult(int requestCode, int resultCode, Intent data) {     if (data != null) {         Uri uri = data.getData();          if (uri != null) {             Cursor c = null;             try {                 c = getContentResolver().query(uri, new String[]{                              ContactsContract.CommonDataKinds.Phone.NUMBER,                               ContactsContract.CommonDataKinds.Phone.TYPE },                         null, null, null);                  if (c != null && c.moveToFirst()) {                     String number = c.getString(0);                     int type = c.getInt(1);                     showSelectedNumber(type, number);                 }             } finally {                 if (c != null) {                     c.close();                 }             }         }     } }  public void showSelectedNumber(int type, String number) {     Toast.makeText(this, type + ": " + number, Toast.LENGTH_LONG).show();       } 

here's the documentation for CommonDataKinds.Phone for on dev.android.

the int "type" tells you the type of number: mobile (2), home (1), work (3), and so on.

note: after the user selects the contact, he gets a spinner of numbers with no indication of the numbers type. that's not really user friendly: if a contact has 5 assigned numbers ... uh, which one of these is the fax number again?

another note: above example needs the sdk > 5 (Android 2.0+), so no 1.6 (=sdk 4). 1.6 has a different api, and if you want to support both versions, read the article about the contacts API on dev.android.

good luck.

disclaimer: i copied most of my code out of the PickContact.java example



回答2:

this code just work fine with me

@Override public void onClick(View arg0) {     // TODO Auto-generated method stub      Intent i = new Intent(Intent.ACTION_PICK, Contacts.CONTENT_URI);     super.startActivityForResult(i, 1001); }  @Override protected void onActivityResult(int requestCode, int resultCode, Intent data) {     // TODO Auto-generated method stub     super.onActivityResult(requestCode, resultCode, data);      switch (requestCode) {     case 1001:          if (resultCode == Activity.RESULT_OK) {              Cursor s = getContentResolver().query(Phone.CONTENT_URI, null,                     null, null, null);          if (s.moveToFirst()) {                 String phoneNum = s.getString(s.getColumnIndex(Phone.NUMBER));                 Toast.makeText(getBaseContext(), phoneNum, Toast.LENGTH_LONG).show();                             }          }          break;      }  } 


回答3:

Try this code,i am sure it will work

Intent intent = new Intent(Intent.ACTION_GET_CONTENT);             intent.setType(ContactsContract.CommonDataKinds.Phone.CONTENT_ITEM_TYPE);             startActivityForResult(intent, PICK_CONTACT); 


回答4:

There is a problem in the accepted answer. If the number selected contains spaces within it
i.e. 85 29 948789 then it will show only 85 (until first space).

so use the below code to rectify this problem :)

Intent intent1 = new Intent(Intent.ACTION_PICK); intent1.setType(ContactsContract.CommonDataKinds.Phone.CONTENT_TYPE);             startActivityForResult(intent1, 1); 

and in onActivityResult

    Uri contactUri = data.getData();      String[] projection = {ContactsContract.CommonDataKinds.Phone.NUMBER, ContactsContract.CommonDataKinds.Phone.DISPLAY_NAME};       Cursor cursor = getContentResolver()             .query(contactUri, projection, null, null, null);     cursor.moveToFirst();       int numberColumn = cursor.getColumnIndex(ContactsContract.CommonDataKinds.Phone.NUMBER);     int nameColumn = cursor.getColumnIndex(ContactsContract.CommonDataKinds.Phone.DISPLAY_NAME);     String number = cursor.getString(numberColumn);     String name = cursor.getString(nameColumn); 


回答5:

TRY THIS

setContentView(R.layout.main);     contactNumber = (TextView)findViewById(R.id.contactnumber);     Button buttonPickContact = (Button)findViewById(R.id.pickcontact);    buttonPickContact.setOnClickListener(new Button.OnClickListener(){     @Override     public void onClick(View arg0) {    // TODO Auto-generated method stub      Intent intent = new Intent(Intent.ACTION_GET_CONTENT);    intent.setType(ContactsContract.CommonDataKinds.Phone.CONTENT_ITEM_TYPE);    startActivityForResult(intent, 1);                    }});    }     @Override     protected void onActivityResult(int requestCode, int resultCode, Intent data) {     // TODO Auto-generated method stub     super.onActivityResult(requestCode, resultCode, data);     if(requestCode == RQS_PICK_CONTACT){    if(resultCode == RESULT_OK){     Uri contactData = data.getData();     Cursor cursor =  managedQuery(contactData, null, null, null, null);     cursor.moveToFirst();        String number =       cursor.getString(cursor.getColumnIndexOrThrow(ContactsContract.CommonDataKinds.Phone.NUMBER));        //contactName.setText(name);       contactNumber.setText(number);       //contactEmail.setText(email);      }      }      }      } 

EDIT XML

        


标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!