투케이2K

223. (kotlin/코틀린) [Intent] : Intent.ACTION_INSERT 인텐트 Uri.parse 사용해 연락처 등록 화면 호출 실시 본문

Kotlin

223. (kotlin/코틀린) [Intent] : Intent.ACTION_INSERT 인텐트 Uri.parse 사용해 연락처 등록 화면 호출 실시

투케이2K 2023. 3. 4. 10:15

[개발 환경 설정]

개발 툴 : AndroidStudio

개발 언어 : Kotlin

 

[소스 코드]

        // ----------------------------------------------------------------------------------
        // TODO [SEARCH FAST] : [goInsertContacts] : 연락처 등록 인텐트 수행
        // ----------------------------------------------------------------------------------
        fun goInsertContacts(mContext: Context) {

            /**
             * // -----------------------------------------
             * [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("================================================")

                // [인텐트 이동 실시]
                val intent = Intent(Intent.ACTION_INSERT, Uri.parse("content://contacts/people"))
                intent.addFlags(Intent.FLAG_ACTIVITY_NO_ANIMATION)
                mContext.startActivity(intent)
            } catch (e: Exception) {
                e.printStackTrace()
            }
        }
 

[결과 출력]


 

반응형
Comments