일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- 푸시 데이터 저장
- flutter 회전
- Flutter UIKitView MethodChannel
- 스위프트 푸시
- 스위프트 UserDefaults
- 플러터 뷰 컨트롤러
- 앱 꺼졌을 때 푸시 데이터 저장
- 앱 백그라운드 푸시 데이터 저장
- native flutter view
- flutter rotate
- 스위프트 앨범
- Swift flutterviewcontroller
- silent push
- Flutter NativeView
- swift 문자
- 노티피케이션 익스텐션
- 안드로이드 바로가기
- swift autolayout
- swift sms
- 안드로이드 앨범
- 스위프트
- NotificationService Extension
- 안드로이드 숏컷
- 안드로이드 에러
- 스위프트 테이블 뷰 셀
- Swift flutterview
- 스위프트 웹뷰
- 안드로이드 FCM
- 스위프트 카메라
- FlutterView MethodChannel
- Today
- Total
Things take time
[Android] Content://로 시작하는 콘텐츠 프로바이더 Uri주소 값을 실제 Path로 얻어내기 본문
[개요]
선택한 파일(앨범 등)의 path(file://...)를 얻어오기 위한 방법이다.
보통은 Uri.getPath()를 이용하면 운 좋게(?) file://로 시작하는 path를 얻을 수 있으나, content://로 시작하는 Uri를 getPath()를하게 된다면 /document/image:1234 이런식으로 넘어온다. 사용할 수 없다.
아래 소스코드를 사용할 것!
출처는 당연 스택오버플로!! => 킷캣 이상부터 이 코드 사용가능하다. 그런데 content://로 시작하는 파일프로바이더 사용이 그 이후라 큰 의미 없을듯.
/** * Get a file path from a Uri. This will get the the path for Storage Access * Framework Documents, as well as the _data field for the MediaStore and * other file-based ContentProviders. * * @param context The context. * @param uri The Uri to query. * @author paulburke */ public static String getPath(final Context context, final Uri uri) { final boolean isKitKat = Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT; // DocumentProvider if (isKitKat && DocumentsContract.isDocumentUri(context, uri)) { // ExternalStorageProvider if (isExternalStorageDocument(uri)) { final String docId = DocumentsContract.getDocumentId(uri); final String[] split = docId.split(":"); final String type = split[0]; if ("primary".equalsIgnoreCase(type)) { return Environment.getExternalStorageDirectory() + "/" + split[1]; } // TODO handle non-primary volumes } // DownloadsProvider else if (isDownloadsDocument(uri)) { final String id = DocumentsContract.getDocumentId(uri); final Uri contentUri = ContentUris.withAppendedId( Uri.parse("content://downloads/public_downloads"), Long.valueOf(id)); return getDataColumn(context, contentUri, null, null); } // MediaProvider else if (isMediaDocument(uri)) { final String docId = DocumentsContract.getDocumentId(uri); final String[] split = docId.split(":"); final String type = split[0]; Uri contentUri = null; if ("image".equals(type)) { contentUri = MediaStore.Images.Media.EXTERNAL_CONTENT_URI; } else if ("video".equals(type)) { contentUri = MediaStore.Video.Media.EXTERNAL_CONTENT_URI; } else if ("audio".equals(type)) { contentUri = MediaStore.Audio.Media.EXTERNAL_CONTENT_URI; } final String selection = "_id=?"; final String[] selectionArgs = new String[] { split[1] }; return getDataColumn(context, contentUri, selection, selectionArgs); } } // MediaStore (and general) else if ("content".equalsIgnoreCase(uri.getScheme())) { return getDataColumn(context, uri, null, null); } // File else if ("file".equalsIgnoreCase(uri.getScheme())) { return uri.getPath(); } return null; } /** * Get the value of the data column for this Uri. This is useful for * MediaStore Uris, and other file-based ContentProviders. * * @param context The context. * @param uri The Uri to query. * @param selection (Optional) Filter used in the query. * @param selectionArgs (Optional) Selection arguments used in the query. * @return The value of the _data column, which is typically a file path. */ public static String getDataColumn(Context context, Uri uri, String selection, String[] selectionArgs) { Cursor cursor = null; final String column = "_data"; final String[] projection = { column }; try { cursor = context.getContentResolver().query(uri, projection, selection, selectionArgs, null); if (cursor != null && cursor.moveToFirst()) { final int column_index = cursor.getColumnIndexOrThrow(column); return cursor.getString(column_index); } } finally { if (cursor != null) cursor.close(); } return null; } /** * @param uri The Uri to check. * @return Whether the Uri authority is ExternalStorageProvider. */ public static boolean isExternalStorageDocument(Uri uri) { return "com.android.externalstorage.documents".equals(uri.getAuthority()); } /** * @param uri The Uri to check. * @return Whether the Uri authority is DownloadsProvider. */ public static boolean isDownloadsDocument(Uri uri) { return "com.android.providers.downloads.documents".equals(uri.getAuthority()); } /** * @param uri The Uri to check. * @return Whether the Uri authority is MediaProvider. */ public static boolean isMediaDocument(Uri uri) { return "com.android.providers.media.documents".equals(uri.getAuthority()); }
'Android(기능)' 카테고리의 다른 글
[Android] FCM Error : MismatchSenderId (0) | 2018.11.26 |
---|---|
[Android] FCM을 이용한 푸시 보내기 (2) | 2018.11.13 |
[Android] 앨범 가져올 때 주의점 및 코드 (0) | 2018.06.28 |
[Android] 현재 디바이스의 너비/높이 얻어오기 (0) | 2018.05.25 |
[Android] Image파일의 회전 값 알아오기 (1) | 2018.05.24 |