1. 程式人生 > >移動開發----Android4.4開啟系統相簿返回Null問題

移動開發----Android4.4開啟系統相簿返回Null問題

public interface PhotoCallBack {
        void onSuccess(String picturePath);// 拿取相片成功
        void onFailure();// 拿取相片失敗
    }

    /**
     * 獲取圖片路徑
     * 
     * @param context
     * @param data
     * @param callback
     * @return
     */
    public static void getPhotoURLByAlbum(Context context, Intent data, PhotoCallBack callback) {
        if
(data == null) { callback.onFailure(); return; } final Uri selectedImage = data.getData(); if (selectedImage == null) { callback.onFailure(); return; } String picturePath = ""; // 關於Android4.4的圖片路徑獲取,如果回來的Uri的格式有兩種
if (Build.VERSION.SDK_INT >= 19 && DocumentsContract.isDocumentUri(context, selectedImage)) { String wholeID = DocumentsContract.getDocumentId(selectedImage); String id = wholeID.split(":")[1]; String[] column = { MediaStore.Images.Media.DATA }; String sel = MediaStore.Images.Media._ID + "=?"
; Cursor cursor = context.getContentResolver().query(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, column, sel, new String[] { id }, null); if (cursor.moveToNext()) { int columnIndex = cursor.getColumnIndex(column[0]); picturePath = cursor.getString(columnIndex); callback.onSuccess(picturePath);// 獲取圖片路徑 } cursor.close(); } else { String[] projection = { MediaStore.Images.Media.DATA }; Cursor cursor = context.getContentResolver().query(selectedImage, projection, null, null, null); if (cursor.moveToNext()) { int column_index = cursor.getColumnIndex(MediaStore.Images.Media.DATA); picturePath = cursor.getString(column_index); callback.onSuccess(picturePath);// 獲取圖片路徑 } cursor.close(); } }
  • 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
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 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
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49

在onActivityResult中處理返回的資料。 
同時一定要在開啟相簿的邏輯中做判斷

Intent intent = new Intent();
intent.setType("image/*");// 從所有圖片中進行選擇
//根據版本號不同使用不同的Action  
if (Build.VERSION.SDK_INT <19) {  
    intent.setAction(Intent.ACTION_GET_CONTENT);  
}else {  
    intent.setAction(Intent.ACTION_OPEN_DOCUMENT);  
}
((Activity) context).startActivityForResult(intent, Constants.REQUEST_CODE_HEADPIC_PICK_PHOTO);
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

參考: 
http://blog.csdn.net/huangyanan1989/article/details/17263203 
http://blog.csdn.net/eastman520/article/details/17756817


public interface PhotoCallBack {
        void onSuccess(String picturePath);// 拿取相片成功
        void onFailure();// 拿取相片失敗
    }

    /**
     * 獲取圖片路徑
     * 
     * @param context
     * @param data
     * @param callback
     * @return
     */
    public static void getPhotoURLByAlbum(Context context, Intent data, PhotoCallBack callback) {
        if (data == null) {
            callback.onFailure();
            return;
        }
        final Uri selectedImage = data.getData();
        if (selectedImage == null) {
            callback.onFailure();
            return;
        }

        String picturePath = ""; // 關於Android4.4的圖片路徑獲取,如果回來的Uri的格式有兩種

            if (Build.VERSION.SDK_INT >= 19 && DocumentsContract.isDocumentUri(context, selectedImage)) {
                String wholeID = DocumentsContract.getDocumentId(selectedImage);
                String id = wholeID.split(":")[1];
                String[] column = { MediaStore.Images.Media.DATA };
                String sel = MediaStore.Images.Media._ID + "=?";
                Cursor cursor = context.getContentResolver().query(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, column, sel, new String[] { id }, null);
                if (cursor.moveToNext()) {
                    int columnIndex = cursor.getColumnIndex(column[0]);
                    picturePath = cursor.getString(columnIndex);
                    callback.onSuccess(picturePath);// 獲取圖片路徑
                }
                cursor.close();
            } else {
                String[] projection = { MediaStore.Images.Media.DATA };
                Cursor cursor = context.getContentResolver().query(selectedImage, projection, null, null, null);
                if (cursor.moveToNext()) {
                    int column_index = cursor.getColumnIndex(MediaStore.Images.Media.DATA);
                    picturePath = cursor.getString(column_index);
                    callback.onSuccess(picturePath);// 獲取圖片路徑
                }
                cursor.close();
            }
    }
  • 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
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 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
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49

在onActivityResult中處理返回的資料。 
同時一定要在開啟相簿的邏輯中做判斷

Intent intent = new Intent();
intent.setType("image/*");// 從所有圖片中進行選擇
//根據版本號不同使用不同的Action  
if (Build.VERSION.SDK_INT <19) {  
    intent.setAction(Intent.ACTION_GET_CONTENT);  
}else {  
    intent.setAction(Intent.ACTION_OPEN_DOCUMENT);  
}
((Activity) context).startActivityForResult(intent, Constants.REQUEST_CODE_HEADPIC_PICK_PHOTO);
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

參考: 
http://blog.csdn.net/huangyanan1989/article/details/17263203 
http://blog.csdn.net/eastman520/article/details/17756817