Notice
Recent Posts
Recent Comments
Link
투케이2K
477. (kotlin/코틀린) [유틸 파일] getDeveloperEnableState : 개발자 모드 활성 상태 확인 본문
[개발 환경 설정]
개발 툴 : AndroidStudio
개발 언어 : Kotlin
[소스 코드]
// -----------------------------------------------------------------------------------------
// TODO [SEARCH FAST] : [getDeveloperEnableState] : 개발자 모드 활성 상태 확인
// -----------------------------------------------------------------------------------------
fun getDeveloperEnableState(mContext: Context): Boolean {
/**
* // -----------------------------------------
* [getDeveloperEnableState 메소드 설명]
* // -----------------------------------------
* 1. 개발자 모드 활성 상태 확인
* // -----------------------------------------
* 2. 호출 방법 :
*
* C_StateCheck.getDeveloperEnableState(A_Main@this)
* // -----------------------------------------
* 3. 리턴 데이터 :
*
* 휴대폰 설정에서 개발자 모드가 활성 인 경우 true / 아니면 false
* // -----------------------------------------
*/
// [리턴 변수 선언 실시]
var returnData = false
// [로직 처리 실시]
try {
returnData = if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1) {
Settings.Global.getInt(mContext.contentResolver, Settings.Global.DEVELOPMENT_SETTINGS_ENABLED, 0) != 0
} else {
Settings.Secure.getInt(mContext.contentResolver, Settings.Secure.DEVELOPMENT_SETTINGS_ENABLED, 0) != 0
}
} catch (e: Exception) {
e.printStackTrace()
}
// [로그 출력 실시]
//*
// ===============================================================
S_Log._F_(mContext, "휴대폰 개발자 모드 활성 상태 확인", arrayOf(
"RETURN :: $returnData"
))
// ===============================================================
// */
// [리턴 반환 실시]
return returnData
}
[결과 출력]
W///===========//: ================================================
I/: [LOG :: CLASS PLACE :: com.example.kotlinproject.C_StateCheck.getDeveloperEnableState]
I/: ----------------------------------------------------
I/: [LOG :: NOW TIME :: 2024-04-11 09:01:28 목요일]
I/: ----------------------------------------------------
I/: [LOG :: DESCRIPTION :: 휴대폰 개발자 모드 활성 상태 확인]
I/: ----------------------------------------------------
I/: [LOG :: RETURN :: true]
W///===========//: ================================================
반응형
'Kotlin' 카테고리의 다른 글
Comments