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

  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.             } 



  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.         }    

你可能感兴趣的:(android解决小米手机上选择照片路径为null问题)