Android 4.4從圖庫選擇圖片,獲取圖片路徑并裁剪

原文章地址:Android 4.4從圖庫選擇圖片,獲取圖片路徑并裁剪

最近在做一個(gè)從圖庫選擇圖片或拍照,然后裁剪的功能.本來是沒問題的,一直在用

[java] view plaincopy在CODE上查看代碼片派生到我的代碼片

01. Intent intent=new Intent(Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);

的方式來做,是調(diào)用系統(tǒng)圖庫來做,但是發(fā)現(xiàn)如果有圖片是同步到google相冊(cè)的話,圖庫里面能看到一個(gè)auto backup的目錄,點(diǎn)進(jìn)去選圖片的話是無法獲取到圖片的路徑的.因?yàn)槟切﹫D片根本就不存在于手機(jī)上.然后看到無論是百度貼吧,Instagram,或者還有些會(huì)選取圖片做修改的app,都是用一個(gè)很漂亮的圖片選擇器(4.4以上,4.3的還是用系統(tǒng)舊的圖庫).

而這個(gè)圖片選擇器可以屏蔽掉那個(gè)auto backup的目錄.所以就開始打算用這個(gè)圖片選擇器來選圖片了.

這個(gè)方法就是

[java] view plaincopy在CODE上查看代碼片派生到我的代碼片

01. Intent intent=new Intent(Intent.ACTION_GET_CONTENT);//ACTION_OPEN_DOCUMENT

02. intent.addCategory(Intent.CATEGORY_OPENABLE);

03. intent.setType("image/jpeg");

04. if(android.os.Build.VERSION.SDK_INT>=android.os.Build.VERSION_CODES.KITKAT){

05.? ? ? ? startActivityForResult(intent, SELECT_PIC_KITKAT);

06. }else{

07.? ? ? ? startActivityForResult(intent, SELECT_PIC);

08. }

為什么要分開不同版本呢?其實(shí)在4.3或以下可以直接用ACTION_GET_CONTENT的,在4.4或以上,官方建議用ACTION_OPEN_DOCUMENT,但其實(shí)都不算太大區(qū)別,區(qū)別是他們返回的Uri,那個(gè)才叫大區(qū)別.這就是困擾了我一整天的問題所在了.

4.3或以下,選了圖片之后,根據(jù)Uri來做處理,很多帖子都有了,我就不詳細(xì)說了.主要是4.4,如果使用上面pick的原生方法來選圖,返回的uri還是正常的,但如果用ACTION_GET_CONTENT的方法,返回的uri跟4.3是完全不一樣的,4.3返回的是帶文件路徑的,而4.4返回的卻是content://com.Android.providers.media.documents/document/image:3951這樣的,沒有路徑,只有圖片編號(hào)的uri.這就導(dǎo)致接下來無法根據(jù)圖片路徑來裁剪的步驟了.

還好找了很多方法,包括加權(quán)限啊什么的,中間還試過用一些方法,自己的app沒崩潰,倒是讓系統(tǒng)圖庫崩潰了,引發(fā)了Java.lang.SecurityException.

[java] view plaincopy在CODE上查看代碼片派生到我的代碼片

01. Caused by: java.lang.SecurityException: Permission Denial: opening provider com.android.providers.media.MediaDocumentsProvider from ProcessRecord{437b5d88 9494:com.google.android.gallery3d/u0a20} (pid=9494, uid=10020) requires android.permission.MANAGE_DOCUMENTS or android.permission.MANAGE_DOCUMENTS

看來4.4的系統(tǒng)還是有些bug.重點(diǎn)來了,4.4得到的uri,需要以下方法來獲取文件的路徑

[java] view plaincopy在CODE上查看代碼片派生到我的代碼片

01. public static String getPath(final Context context, final Uri uri) {

02.

03.? ? final boolean isKitKat = Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT;

04.

05.? ? // DocumentProvider

06.? ? if (isKitKat && DocumentsContract.isDocumentUri(context, uri)) {

07.? ? ? ? // ExternalStorageProvider

08.? ? ? ? if (isExternalStorageDocument(uri)) {

09.? ? ? ? ? ? final String docId = DocumentsContract.getDocumentId(uri);

10.? ? ? ? ? ? final String[] split = docId.split(":");

11.? ? ? ? ? ? final String type = split[0];

12.

13.? ? ? ? ? ? if ("primary".equalsIgnoreCase(type)) {

14.? ? ? ? ? ? ? ? return Environment.getExternalStorageDirectory() + "/" + split[1];

15.? ? ? ? ? ? }

16.

17.? ? ? ? ? ? // TODO handle non-primary volumes

18.? ? ? ? }

19.? ? ? ? // DownloadsProvider

20.? ? ? ? else if (isDownloadsDocument(uri)) {

21.

22.? ? ? ? ? ? final String id = DocumentsContract.getDocumentId(uri);

23.? ? ? ? ? ? final Uri contentUri = ContentUris.withAppendedId(

24.? ? ? ? ? ? ? ? ? ? Uri.parse("content://downloads/public_downloads"), Long.valueOf(id));

25.

26.? ? ? ? ? ? return getDataColumn(context, contentUri, null, null);

27.? ? ? ? }

28.? ? ? ? // MediaProvider

29.? ? ? ? else if (isMediaDocument(uri)) {

30.? ? ? ? ? ? final String docId = DocumentsContract.getDocumentId(uri);

31.? ? ? ? ? ? final String[] split = docId.split(":");

32.? ? ? ? ? ? final String type = split[0];

33.

34.? ? ? ? ? ? Uri contentUri = null;

35.? ? ? ? ? ? if ("image".equals(type)) {

36.? ? ? ? ? ? ? ? contentUri = MediaStore.Images.Media.EXTERNAL_CONTENT_URI;

37.? ? ? ? ? ? } else if ("video".equals(type)) {

38.? ? ? ? ? ? ? ? contentUri = MediaStore.Video.Media.EXTERNAL_CONTENT_URI;

39.? ? ? ? ? ? } else if ("audio".equals(type)) {

40.? ? ? ? ? ? ? ? contentUri = MediaStore.Audio.Media.EXTERNAL_CONTENT_URI;

41.? ? ? ? ? ? }

42.

43.? ? ? ? ? ? final String selection = "_id=?";

44.? ? ? ? ? ? final String[] selectionArgs = new String[] {

45.? ? ? ? ? ? ? ? ? ? split[1]

46.? ? ? ? ? ? };

47.

48.? ? ? ? ? ? return getDataColumn(context, contentUri, selection, selectionArgs);

49.? ? ? ? }

50.? ? }

51.? ? // MediaStore (and general)

52.? ? else if ("content".equalsIgnoreCase(uri.getScheme())) {

53.

54.? ? ? ? // Return the remote address

55.? ? ? ? if (isGooglePhotosUri(uri))

56.? ? ? ? ? ? return uri.getLastPathSegment();

57.

58.? ? ? ? return getDataColumn(context, uri, null, null);

59.? ? }

60.? ? // File

61.? ? else if ("file".equalsIgnoreCase(uri.getScheme())) {

62.? ? ? ? return uri.getPath();

63.? ? }

64.

65.? ? return null;

66. }

67.

68. /**

69.? * Get the value of the data column for this Uri. This is useful for

70.? * MediaStore Uris, and other file-based ContentProviders.

71.? *

72.? * @param context The context.

73.? * @param uri The Uri to query.

74.? * @param selection (Optional) Filter used in the query.

75.? * @param selectionArgs (Optional) Selection arguments used in the query.

76.? * @return The value of the _data column, which is typically a file path.

77.? */

78. public static String getDataColumn(Context context, Uri uri, String selection,

79.? ? ? ? String[] selectionArgs) {

80.

81.? ? Cursor cursor = null;

82.? ? final String column = "_data";

83.? ? final String[] projection = {

84.? ? ? ? ? ? column

85.? ? };

86.

87.? ? try {

88.? ? ? ? cursor = context.getContentResolver().query(uri, projection, selection, selectionArgs,

89.? ? ? ? ? ? ? ? null);

90.? ? ? ? if (cursor != null && cursor.moveToFirst()) {

91.? ? ? ? ? ? final int index = cursor.getColumnIndexOrThrow(column);

92.? ? ? ? ? ? return cursor.getString(index);

93.? ? ? ? }

94.? ? } finally {

95.? ? ? ? if (cursor != null)

96.? ? ? ? ? ? cursor.close();

97.? ? }

98.? ? return null;

99. }

100.

101.

102. /**

103.? * @param uri The Uri to check.

104.? * @return Whether the Uri authority is ExternalStorageProvider.

105.? */

106. public static boolean isExternalStorageDocument(Uri uri) {

107.? ? return "com.android.externalstorage.documents".equals(uri.getAuthority());

108. }

109.

110. /**

111.? * @param uri The Uri to check.

112.? * @return Whether the Uri authority is DownloadsProvider.

113.? */

114. public static boolean isDownloadsDocument(Uri uri) {

115.? ? return "com.android.providers.downloads.documents".equals(uri.getAuthority());

116. }

117.

118. /**

119.? * @param uri The Uri to check.

120.? * @return Whether the Uri authority is MediaProvider.

121.? */

122. public static boolean isMediaDocument(Uri uri) {

123.? ? return "com.android.providers.media.documents".equals(uri.getAuthority());

124. }

125.

126. /**

127.? * @param uri The Uri to check.

128.? * @return Whether the Uri authority is Google Photos.

129.? */

130. public static boolean isGooglePhotosUri(Uri uri) {

131.? ? return "com.google.android.apps.photos.content".equals(uri.getAuthority());

132. }

這樣,就可以在4.4上用漂亮的圖片選擇器,選到我們想要的文件,又不會(huì)出問題了.

昨天發(fā)現(xiàn)了個(gè)bug,如果在4.4上面不用"圖片"來選,用"圖庫"來選,就會(huì)無法讀取到圖片路徑,所以只需要加個(gè)判斷,如果是用舊方式來選,就用舊方式來讀,就是如果

DocumentsContract.isDocumentUri(context, uri) 返回false的話,就用舊的方式

[java] view plaincopy在CODE上查看代碼片派生到我的代碼片

01. public static String selectImage(Context context,Intent data){

02.? ? ? ? Uri selectedImage = data.getData();

03. //? ? ? Log.e(TAG, selectedImage.toString());

04.? ? ? ? if(selectedImage!=null){

05.? ? ? ? ? ? String uriStr=selectedImage.toString();

06.? ? ? ? ? ? String path=uriStr.substring(10,uriStr.length());

07.? ? ? ? ? ? if(path.startsWith("com.sec.android.gallery3d")){

08.? ? ? ? ? ? ? ? Log.e(TAG, "It's auto backup pic path:"+selectedImage.toString());

09.? ? ? ? ? ? ? ? return null;

10.? ? ? ? ? ? }

11.? ? ? ? }

12.? ? ? ? String[] filePathColumn = { MediaStore.Images.Media.DATA };

13.? ? ? ? Cursor cursor = context.getContentResolver().query(selectedImage,filePathColumn, null, null, null);

14.? ? ? ? cursor.moveToFirst();

15.? ? ? ? int columnIndex = cursor.getColumnIndex(filePathColumn[0]);

16.? ? ? ? String picturePath = cursor.getString(columnIndex);

17.? ? ? ? cursor.close();

18.? ? ? ? return picturePath;

19.? ? }

這樣就OK的了

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市夏块,隨后出現(xiàn)的幾起案子疏咐,更是在濱河造成了極大的恐慌纤掸,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,311評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件浑塞,死亡現(xiàn)場離奇詭異借跪,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)酌壕,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,339評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門掏愁,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人卵牍,你說我怎么就攤上這事果港。” “怎么了糊昙?”我有些...
    開封第一講書人閱讀 152,671評(píng)論 0 342
  • 文/不壞的土叔 我叫張陵辛掠,是天一觀的道長。 經(jīng)常有香客問我溅蛉,道長公浪,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,252評(píng)論 1 279
  • 正文 為了忘掉前任船侧,我火速辦了婚禮欠气,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘镜撩。我一直安慰自己预柒,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,253評(píng)論 5 371
  • 文/花漫 我一把揭開白布袁梗。 她就那樣靜靜地躺著宜鸯,像睡著了一般。 火紅的嫁衣襯著肌膚如雪遮怜。 梳的紋絲不亂的頭發(fā)上淋袖,一...
    開封第一講書人閱讀 49,031評(píng)論 1 285
  • 那天,我揣著相機(jī)與錄音锯梁,去河邊找鬼即碗。 笑死,一個(gè)胖子當(dāng)著我的面吹牛陌凳,可吹牛的內(nèi)容都是我干的剥懒。 我是一名探鬼主播,決...
    沈念sama閱讀 38,340評(píng)論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼合敦,長吁一口氣:“原來是場噩夢(mèng)啊……” “哼初橘!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 36,973評(píng)論 0 259
  • 序言:老撾萬榮一對(duì)情侶失蹤保檐,失蹤者是張志新(化名)和其女友劉穎耕蝉,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體夜只,經(jīng)...
    沈念sama閱讀 43,466評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡赔硫,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,937評(píng)論 2 323
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了盐肃。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片爪膊。...
    茶點(diǎn)故事閱讀 38,039評(píng)論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖砸王,靈堂內(nèi)的尸體忽然破棺而出推盛,到底是詐尸還是另有隱情,我是刑警寧澤谦铃,帶...
    沈念sama閱讀 33,701評(píng)論 4 323
  • 正文 年R本政府宣布耘成,位于F島的核電站,受9級(jí)特大地震影響驹闰,放射性物質(zhì)發(fā)生泄漏瘪菌。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,254評(píng)論 3 307
  • 文/蒙蒙 一嘹朗、第九天 我趴在偏房一處隱蔽的房頂上張望师妙。 院中可真熱鬧,春花似錦屹培、人聲如沸默穴。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,259評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽蓄诽。三九已至,卻和暖如春媒吗,著一層夾襖步出監(jiān)牢的瞬間仑氛,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,485評(píng)論 1 262
  • 我被黑心中介騙來泰國打工闸英, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留锯岖,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 45,497評(píng)論 2 354
  • 正文 我出身青樓自阱,卻偏偏與公主長得像嚎莉,于是被迫代替她去往敵國和親米酬。 傳聞我的和親對(duì)象是個(gè)殘疾皇子沛豌,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,786評(píng)論 2 345

推薦閱讀更多精彩內(nèi)容