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