투케이2K

594. (Android/Java) [유틸 파일] goDownLoadFolderIntent : 다운로드 폴더 인텐트 이동 본문

Android

594. (Android/Java) [유틸 파일] goDownLoadFolderIntent : 다운로드 폴더 인텐트 이동

투케이2K 2023. 7. 5. 22:38

[개발 환경 설정]

개발 툴 : AndroidStudio

 

[소스 코드]

 

    // -----------------------------------------------------------------------------------------
    // TODO [SEARCH FAST] : [goDownLoadFolderIntent] : 다운로드 폴더 인텐트 이동
    // -----------------------------------------------------------------------------------------
    public static void goDownLoadFolderIntent(Context mContext){

        /**
         * // -----------------------------------------
         * [goDownLoadFolderIntent 메소드 설명]
         * // -----------------------------------------
         * 1. 다운로드 폴더 인텐트 이동
         * // -----------------------------------------
         * 2. 호출 방법 : C_Intent.goDownLoadFolderIntent(A_Intro.this);
         * // -----------------------------------------
         * */

        try {
            // ===============================================================
            S_Log._D_("다운로드 폴더 인텐트 이동 실시", null);
            // ===============================================================

            // [인텐트 이동 실시]
            Intent intent = new Intent(DownloadManager.ACTION_VIEW_DOWNLOADS);
            intent.addFlags(Intent.FLAG_ACTIVITY_NO_ANIMATION);
            mContext.startActivity(intent);
        }
        catch (Exception e){
            e.printStackTrace();
        }
    }

 

반응형
Comments