//새로 연락처 추가
Intent intent = new Intent(Intent.ACTION_INSERT,Uri.parse("content://contacts/people"));
Bundle bundle = new Bundle();
bundle.putString(Intents.Insert.PHONE, currentPhoneNumber);//currentPhoneNumber 저장할 전화번호
intent.putExtras(bundle);
startActivity(intent);

=================================================================================================

//기존 연락처 추가
Intent i = new Intent(Intent. ACTION_GET_CONTENT);   
i.setType("vnd.android.cursor.item/phone_v2");  
startActivityForResult(i, 0); 

-------------------------------------------------------
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
/**결과값을 넘겨 받은경우*/
if (resultCode == RESULT_OK) 
{
//Data.getDataSting() = "content://com.android.contacts/data/7" --> 7 == id
String id = data.getDataString().substring(36);
Uri uri = Data.CONTENT_URI;
String[] projection = new String[] {
Data._ID,
Data.RAW_CONTACT_ID,
ContactsContract.CommonDataKinds.Phone.DISPLAY_NAME
};
Cursor c = getContentResolver().query(uri, projection,
Data._ID + " = '" + id + "'",
null, null); 
c.moveToFirst();
try {
uri = ContactsContract.RawContacts.CONTENT_URI;
Intent intent = new Intent(Intent.ACTION_EDIT,    //--- Intent.ACTION_EDIT, Intent.ACTION_DELETE
Uri.parse(uri +"/"+ c.getString(c.getColumnIndex(Data.RAW_CONTACT_ID))));
Bundle bundle = new Bundle();
bundle.putString(Intents.Insert.TERTIARY_PHONE, currentPhoneNumber);
intent.putExtras(bundle);
startActivity(intent);
c.close();
} catch (Exception e) {
e.printStackTrace();
}
}
}
블로그 이미지

알 수 없는 사용자

안드로이드 개발

,