Notice
Recent Posts
Recent Comments
Link
투케이2K
538. (Android/Java) [유틸 파일] goFileAccess : 파일 액세스 권한 인텐트 이동 본문
[개발 환경 설정]
개발 툴 : AndroidStudio
[소스 코드]
// -----------------------------------------------------------------------------------------
// TODO [SEARCH FAST] : [goFileAccess] : 파일 액세스 권한 인텐트 이동
// -----------------------------------------------------------------------------------------
public static void goFileAccess(Context mContext){
/**
* // -----------------------------------------
* [goFileAccess 메소드 설명]
* // -----------------------------------------
* 1. 파일 액세스 권한 인텐트 이동
* // -----------------------------------------
* 2. 호출 방법 : C_Intent.goFileAccess(A_Intro.this);
* // -----------------------------------------
* 3. 권한 부여 확인 : Environment.isExternalStorageManager()
* // -----------------------------------------
* 4. 필요 퍼미션 : <uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE" />
* // -----------------------------------------
* 5. 주의 : 구글 플레이스토어 등록 시 정책 상 업데이트 거절이 될 수 있습니다
* // -----------------------------------------
* */
try {
S_Log.ltd("================================================");
S_Log.cnt("["+ACTIVITY_NAME+" >> "+C_Util.getNowMethod(1)+" :: 파일 액세스 권한 인텐트 이동]");
S_Log.lbd("================================================");
// [인텐트 이동 실시]
Intent intent = new Intent(Settings.ACTION_MANAGE_APP_ALL_FILES_ACCESS_PERMISSION);
intent.addFlags(Intent.FLAG_ACTIVITY_NO_ANIMATION);
Uri uri = Uri.fromParts("package", mContext.getPackageName(), null);
intent.setData(uri);
mContext.startActivity(intent);
}
catch (Exception e){
e.printStackTrace();
}
}
[결과 출력]
반응형
'Android' 카테고리의 다른 글
Comments