Notice
Recent Posts
Recent Comments
Link
투케이2K
182. (kotlin/코틀린) [유틸 파일] goAppListIntent : 전체 앱 목록 확인 인텐트 이동 본문
[개발 환경 설정]
개발 툴 : AndroidStudio
개발 언어 : Kotlin
[소스 코드]
// TODO [SEARCH FAST] : [goAppListIntent] : 전체 앱 목록 확인 인텐트 이동
fun goAppListIntent(mContext: Context) {
/**
* // -----------------------------------------
* [goAppListIntent 메소드 설명]
* // -----------------------------------------
* 1. 전체 앱 목록 확인 인텐트 이동
* // -----------------------------------------
* 2. 호출 방법 :
*
* C_Intent.goAppListIntent(A_Intro@this)
* // -----------------------------------------
* */
// [로직 처리 실시]
try {
Log.i("---","---")
Log.d("//===========//","================================================")
Log.i("","\n"+"[C_Intent >> goAppListIntent() :: 전체 앱 목록 확인 인텐트 이동 실시]")
Log.d("//===========//","================================================")
Log.i("---","---")
// [인텐트 이동]
val intent = Intent(Settings.ACTION_APPLICATION_SETTINGS)
intent.addFlags(Intent.FLAG_ACTIVITY_NO_ANIMATION)
mContext.startActivity(intent)
} catch (e: Exception) {
e.printStackTrace()
}
}
[결과 출력]
반응형
'Kotlin' 카테고리의 다른 글
Comments