Notice
Recent Posts
Recent Comments
Link
투케이2K
513. (Android/Java) [Intent] : Intent.ACTION_INSERT 인텐트 Uri.parse 사용해 연락처 등록 화면 호출 실시 본문
Android
513. (Android/Java) [Intent] : Intent.ACTION_INSERT 인텐트 Uri.parse 사용해 연락처 등록 화면 호출 실시
투케이2K 2023. 3. 4. 10:11[개발 환경 설정]
개발 툴 : AndroidStudio
[소스 코드]
// -----------------------------------------------------------------------------------------
// TODO [SEARCH FAST] : [goInsertContacts] : 연락처 등록 인텐트 수행
// -----------------------------------------------------------------------------------------
public static void goInsertContacts(Context mContext){
/**
* // -----------------------------------------
* [goInsertContacts 메소드 설명]
* // -----------------------------------------
* 1. 연락처 등록 인텐트 수행
* // -----------------------------------------
* 2. 호출 방법 : C_Intent.goInsertContacts(A_Intro.this);
* // -----------------------------------------
* */
try {
S_Log.ltd("================================================");
S_Log.cnt("["+ACTIVITY_NAME+" >> "+C_Util.getNowMethod(1)+" :: 연락처 등록 인텐트 수행 실시]");
S_Log.lbd("================================================");
// [인텐트 이동 실시]
Intent intent = new Intent(Intent.ACTION_INSERT, Uri.parse("content://contacts/people"));
intent.addFlags(Intent.FLAG_ACTIVITY_NO_ANIMATION);
mContext.startActivity(intent);
}
catch (Exception e){
e.printStackTrace();
}
}
[결과 출력]
반응형
'Android' 카테고리의 다른 글
Comments