答えて

1

私は答えを得た。 :)

String myData = "content://contacts/people/"; 
Intent myActivity2 = newIntent(Intent.ACTION_VIEW, Uri.parse(myData)); 
startActivity(myActivity2); 

あるいは我々が使用することができます

 Intent intent = new Intent(Intent.ACTION_GET_CONTENT); 
     intent.setType(ContactsContract.CommonDataKinds.Phone.CONTENT_ITEM_TYPE); 
     startActivityForResult(intent, 2); 
関連する問題