반응형
출처 - 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); |
참 쉽죠잉~ㅋ
반응형
'개발 > 안드로이드' 카테고리의 다른 글
[번역] 안드로이드 멀티 스레드를 통한 성능 향상(이미지 다운로드) (0) | 2012.04.13 |
---|---|
어플에서 문자(SMS) 메세지 보내기 & 받은 내용 분석하기 (0) | 2012.02.06 |
전체 MediaScan(미디어 스캔) 수동으로 하기 && MediaScan 원하는 부분만 하기 (0) | 2012.02.06 |
ListView, GridView 등... 스크롤링 상태 체크하기. (0) | 2012.02.06 |
Cursor query (Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) (0) | 2012.02.06 |
댓글