How to import a Specific Contact's phone number?
问题 I'm trying to Read Phone number of a Contact Selected using Contact Picker. The Display Name works fine, But Phone number doesn't. Code: //calling Contact Picker public void CPick(View v){ Intent intent=new Intent(Intent.ACTION_PICK, ContactsContract.Contacts.CONTENT_URI); startActivityForResult(intent, PICK_CONTACT); } @Override //Contact Picker here: protected void onActivityResult(int reqCode, int resultCode, Intent data){ super.onActivityResult(reqCode,resultCode, data); if (reqCode==PICK