//새로 연락처 추가
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();
}
}
}
'Android > 기타 & Tip' 카테고리의 다른 글
안드로이드 앱 성능 최적화(펌글) (0) | 2013.07.25 |
---|---|
Andr원본 : http://www.phpschool.com/link/android/28oid Task 설명(펌글) (0) | 2011.08.17 |
android SQLiteOpenHelper 사용 코드 (0) | 2011.04.26 |
통화 볼륨 버튼 조절(블루투스/일반 전화) (0) | 2011.03.23 |
안드로이드 예제 (0) | 2011.03.16 |