mirror of
https://gitee.com/shuto/cordova-plugin-camera.git
synced 2025-04-22 04:36:23 +08:00
Fix for CB-10625
getDocumentId was crashing in some cases. Now, in case it crashes, it will use the original uri to query.
This commit is contained in:
parent
61b77951e1
commit
019346d188
@ -80,18 +80,25 @@ public class FileHelper {
|
||||
public static String getRealPathFromURI_API19(Context context, Uri uri) {
|
||||
String filePath = "";
|
||||
try {
|
||||
String wholeID = DocumentsContract.getDocumentId(uri);
|
||||
|
||||
// Split at colon, use second item in the array
|
||||
String id = wholeID.indexOf(":") > -1 ? wholeID.split(":")[1] : wholeID.indexOf(";") > -1 ? wholeID
|
||||
.split(";")[1] : wholeID;
|
||||
String id = null;
|
||||
Uri myUri = MediaStore.Images.Media.EXTERNAL_CONTENT_URI;;
|
||||
try {
|
||||
String wholeID = DocumentsContract.getDocumentId(uri);
|
||||
|
||||
// Split at colon, use second item in the array
|
||||
id = wholeID.indexOf(":") > -1 ? wholeID.split(":")[1] : wholeID.indexOf(";") > -1 ? wholeID
|
||||
.split(";")[1] : wholeID;
|
||||
} catch (Exception e) {
|
||||
myUri = uri;
|
||||
}
|
||||
|
||||
String[] column = { MediaStore.Images.Media.DATA };
|
||||
|
||||
// where id is equal to
|
||||
String sel = MediaStore.Images.Media._ID + "=?";
|
||||
|
||||
Cursor cursor = context.getContentResolver().query(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, column,
|
||||
Cursor cursor = context.getContentResolver().query(myUri, column,
|
||||
sel, new String[] { id }, null);
|
||||
|
||||
int columnIndex = cursor.getColumnIndex(column[0]);
|
||||
|
Loading…
x
Reference in New Issue
Block a user