Notice
Recent Posts
Recent Comments
Link
투케이2K
122. (AndroidStudio/android/kotlin) 코틀린 인텐트 설정 (Intent Settings) 창 이동 실시 본문
Android
122. (AndroidStudio/android/kotlin) 코틀린 인텐트 설정 (Intent Settings) 창 이동 실시
투케이2K 2021. 4. 28. 10:36/* =========================== */
[ 개발 환경 설정 ]
개발 툴 : AndroidStudio
개발 언어 : kotlin
/* =========================== */
/* =========================== */
[소스 코드]
try{
/** ==== [기본 설정 창 이동하기] ==== */
val intent = Intent(Settings.ACTION_SETTINGS)
intent.addFlags(Intent.FLAG_ACTIVITY_NO_ANIMATION)
startActivity(intent)
overridePendingTransition(0, 0)
}
catch(e : Exception){
e.printStackTrace()
}
/* =========================== */
/* =========================== */
[결과 출력]
/* =========================== */
반응형
'Android' 카테고리의 다른 글
Comments