How to extract phone number from the selected contact?
问题 public class ImportContactsActivity extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); Button pickContact = (Button) findViewById(R.id.contacts); pickContact.setOnClickListener(new View.OnClickListener() { public void onClick(View view) { Intent intent = new Intent(Intent.ACTION_PICK, ContactsContract.Contacts.CONTENT_URI); startActivityForResult