투케이2K

443. (android/java) [android 12 / target 31] [유틸 파일] goContactsIntent : 모바일 연락처 목록 인텐트 (intent) 이동 본문

Android

443. (android/java) [android 12 / target 31] [유틸 파일] goContactsIntent : 모바일 연락처 목록 인텐트 (intent) 이동

투케이2K 2023. 1. 6. 18:14

[개발 환경 설정]

개발 툴 : AndroidStudio

 

[소스 코드]

 

    // TODO [SEARCH FAST] : [goContactsIntent] : 모바일 연락처 목록 인텐트 이동
    public static void goContactsIntent(Context mContext){

        /**
         * // -----------------------------------------
         * [goContactsIntent 메소드 설명]
         * // -----------------------------------------
         * 1. 모바일 연락처 목록 인텐트 이동
         * // -----------------------------------------
         * 2. 호출 방법 :
         *
         * C_Intent.goContactsIntent(A_Intro.this);
         * // -----------------------------------------
         * */

        try {
            Log.i("---","---");
            Log.d("//===========//","================================================");
            Log.i("","\n"+"[C_Intent >> goContactsIntent() :: 모바일 연락처 목록 인텐트 이동 실시]");
            Log.d("//===========//","================================================");
            Log.i("---","---");

            // [인텐트 이동]
            Intent intent = new Intent(Intent.ACTION_VIEW);
            intent.addFlags(Intent.FLAG_ACTIVITY_NO_ANIMATION);
            intent.setData(ContactsContract.Contacts.CONTENT_URI);
            mContext.startActivity(intent);
        }
        catch (Exception e){
            e.printStackTrace();
        }
    }

 

반응형
Comments