목록타겟31 (2)
투케이2K
[개발 환경 설정] 개발 툴 : AndroidStudio [소스 코드] // [기존] : [타켓 31 미만] : [절대 : 텍스트 경로 저장] Cursor c = getContentResolver().query(Uri.parse(String.valueOf(item)), null,null,null,null); c.moveToNext(); String absolutePath = c.getString(c.getColumnIndex(MediaStore.MediaColumns.DATA)); // [변경] : [타켓 31 이상] : [절대 : 텍스트 경로 저장] Cursor c = getContentResolver().query(Uri.parse(String.valueOf(item)), null,null,n..
[개발 환경 설정] 개발 툴 : AndroidStudio [소스 코드] // ----------------------------------------- // [노티피케이션 알림 클릭 시 인텐트 설정 정의] Intent intent = null; PendingIntent pendingIntent = null; try { // ----------------------------------------- // [메인 실행 중인 경우 >> 백그라운드에서 포그라운드 전환] / [메인 실행 중이 아닌 경우 >> 인트로 화면 설정] String checkMain = String.valueOf(topName); if (checkMain != null && checkMain.length()>0 && !check..