android 解决小米手机上选择照片路径为null情况

来源:互联网 发布:内网流量监控软件 编辑:程序博客网 时间:2024/04/28 07:53

昨天测试帅哥说他手机选择图库崩溃了,这是一个上传头像的功能,相信很多应用都有这个功能,于是我就把手机拿过来打log看了下返回的路径 为null,在网上搜索了下解决方案,现在把解决方案记录下:

这是在onActivityResult方法中执行的,

[html] view plain copy
 print?在CODE上查看代码片派生到我的代码片
  1. if (data == null) {  
  2.                 return;  
  3.             }  
  4.             uri = data.getData();  
  5.             uri = geturi(data);//解决方案  
  6.             String[] proj = { MediaStore.Images.Media.DATA };  
  7.             Cursor cursor = managedQuery(uri, proj, null, null, null);  
  8.             if(cursor!=null){  
  9.                 int column_index = cursor.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);  
  10.                 cursor.moveToFirst();  
  11.                 String path = cursor.getString(column_index);// 图片在的路径  
  12.                 Intent intent3 = new Intent(this, SYClipActivity.class);  
  13.                 intent3.putExtra("path", path);  
  14.                 startActivityForResult(intent3, IMAGE_COMPLETE);  
  15.             }  

[html] view plain copy
 print?在CODE上查看代码片派生到我的代码片
  1. /**  
  2.      * 解决小米手机上获取图片路径为null的情况  
  3.      * @param intent  
  4.      * @return  
  5.      */  
  6.      public Uri geturi(android.content.Intent intent) {    
  7.             Uri uri = intent.getData();    
  8.             String type = intent.getType();    
  9.             if (uri.getScheme().equals("file") && (type.contains("image/"))) {    
  10.                 String path = uri.getEncodedPath();    
  11.                 if (path != null) {    
  12.                     path = Uri.decode(path);    
  13.                     ContentResolver cr = this.getContentResolver();    
  14.                     StringBuffer buff = new StringBuffer();    
  15.                     buff.append("(").append(Images.ImageColumns.DATA).append("=")    
  16.                             .append("'" + path + "'").append(")");    
  17.                     Cursor cur = cr.query(Images.Media.EXTERNAL_CONTENT_URI,    
  18.                             new String[] { Images.ImageColumns._ID },    
  19.                             buff.toString(), null, null);    
  20.                     int index = 0;    
  21.                     for (cur.moveToFirst(); !cur.isAfterLast(); cur.moveToNext()) {    
  22.                         index = cur.getColumnIndex(Images.ImageColumns._ID);    
  23.                         // set _id value    
  24.                         index = cur.getInt(index);    
  25.                     }    
  26.                     if (index == 0) {    
  27.                         // do nothing    
  28.                     } else {    
  29.                         Uri uri_temp = Uri    
  30.                                 .parse("content://media/external/images/media/"    
  31.                                         + index);    
  32.                         if (uri_temp != null) {    
  33.                             uri = uri_temp;    
  34.                         }    
  35.                     }    
  36.                 }    
  37.             }    
  38.             return uri;    
  39.         }    

在此记录下,
0 1
原创粉丝点击