Notice
Recent Posts
Recent Comments
Link
투케이2K
335. (kotlin/코틀린) [유틸 파일] goDownLoadFolderIntent : 다운로드 폴더 인텐트 이동 본문
[개발 환경 설정]
개발 툴 : AndroidStudio
개발 언어 : Kotlin
[소스 코드]
// -----------------------------------------------------------------------------------------
// TODO [SEARCH FAST] : [goDownLoadFolderIntent] : 다운로드 폴더 인텐트 이동
// -----------------------------------------------------------------------------------------
fun goDownLoadFolderIntent(mContext: Context) {
/**
* // -----------------------------------------
* [goDownLoadFolderIntent 메소드 설명]
* // -----------------------------------------
* 1. 다운로드 폴더 인텐트 이동
* // -----------------------------------------
* 2. 호출 방법 : C_Intent.goDownLoadFolderIntent(A_Intro@this)
* // -----------------------------------------
*/
try {
// ===============================================================
S_Log._D_("다운로드 폴더 인텐트 이동 실시", null)
// ===============================================================
// [인텐트 이동 실시]
val intent = Intent(DownloadManager.ACTION_VIEW_DOWNLOADS)
intent.addFlags(Intent.FLAG_ACTIVITY_NO_ANIMATION)
mContext.startActivity(intent)
} catch (e: Exception) {
e.printStackTrace()
}
}
반응형
'Kotlin' 카테고리의 다른 글
Comments