본문 바로가기
개발/안드로이드

연락처 추가하는 화면 띄우기.

by darksilber 2012. 2. 6.
반응형
출처 - http://www.mfamstory.com/

간단하다.

인텐트에 액션을 아래와 같이 주어 실행하면 끗 !

Intent intent = new Intent(Intent.ACTION_INSERT, Contacts.CONTENT_URI);
startActivity(intent);

추가적으로 화면에 전화번호를 넣어서 띄우고 싶을 때는 !

번들에다가 이런식으로

bundle.putString(Intents.Insert.PHONE, "01077777777"); 을 넣어서 똑같이 실행하면 끗 !

Intent intent = new Intent(Intent.ACTION_INSERT, Contacts.CONTENT_URI);
Bundle bundle = new Bundle();
bundle.putString(Intents.Insert.PHONE, "01077777777");
intent.putExtras(bundle);
startActivity(intent);

참 쉽죠잉~ㅋ

출처 : http://www.mfamstory.com

반응형

댓글