我从图库中提取了用户选择的图像,并希望在图像视图中显示它
Intent intent = new Intent();
intent.setType("image/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(intent,
"Select Picture"), SELECT_PICTURE);
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
if (resultCode == RESULT_OK) {
if (requestCode == SELECT_PICTURE) {
Uri selectedImageUri = data.getData();
selectedImagePath = getPath(selectedImageUri);
imageView.setImageBitmap(BitmapFactory
.decodeFile(selectedImagePath));
Log.i("SELECTED IMAGE: ", selectedImagePath);
}
}
}
/**
* helper to retrieve the path of an image URI
*/
public String getPath(Uri uri) {
// just some safety built in
if( uri == null ) {
// TODO perform some logging or show user feedback
return null;
}
// try to retrieve the image from the media store first
// this will only work for images selected from gallery
String[] projection = { MediaStore.Images.Media.DATA };
Cursor cursor = managedQuery(uri, projection, null, null, null);
if( cursor != null ){
int column_index = cursor
.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
cursor.moveToFirst();
return cursor.getString(column_index);
}
// for other file managers
return uri.getPath();
}
有一些图片的路径为:/ storage / sdcard0 / WhatsApp / Media / WhatsApp Images / IMG-20150407-WA0013.jpg正确显示
并且有一些图片可以将路径作为谷歌下载链接。示例:https://lh3.googleusercontent.com/-9VYhxxxmZs/VdQnxxxo5I/AAAAxxxCpM/4B3s-xxoeI/I/2015-08-08.jpg(隐私帖子中的路径已更改)
这些图像无法显示。
我就是这样一个案例,
我将Uri作为内容://com.sec.android.gallery3d.provider/picasa/item/5913341278276321746
和selectedImagePath为https://lh3.googleusercontent.com/-9VYhxxxmZs/VdQnxxxo5I/AAAAxxxCpM/4B3s-xxoeI/I/2015-08-08.jpg
如何将这些图像的selectedImagePath作为手机中的路径而非网络位置?
答案 0 :(得分:2)
正如我在评论中所说,你应该使用像Picasso或Glide这样的库,因为在它们的实现中有许多角点案例被解决,如缓存系统,网络故障处理,图像效果和转换,内存性能等等。 / p>
如果你想以更简单的方式和“手动”这样做,你应该考虑这个:
private class NetworkImageAsyncTask extends AsyncTask<String, Void, Bitmap> {
@Override
protected Void doInBackground(String... params) {
try {
InputStream in = new URL(params[0]).openStream();
bitmap = BitmapFactory.decodeStream(in);
} catch (Exception e) {
return null;
}
return bitmap;
}
@Override
protected void onPostExecute(Bitmap result) {
if (result != null)
mImageView.setImageBitmap(result);
}
}
}
致电:new NetworkImageAsyncTask("url").execute();
您应该使用AsyncTask
,因为这个“网络方法”不应该在主线程中完成。
注意:此解决方案不包含内存泄漏安全代码,这只是一个示例方法
编辑(评论回复):
试试这个:
Intent intent = new Intent(Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
intent.setType("image/jpg");
...
String[] projection = { MediaStore.Images.Media.DATA };
Cursor cursor = getContentResolver().query(uri, projection, null, null, null);
cursor.moveToFirst();
String path = cursor.getString(cursor.getColumnIndex(projection[0]));
cursor.close();
return path;
答案 1 :(得分:1)
我用以下方法解决了它:
Intent intent = new Intent(Intent.ACTION_PICK);
intent.setType("image/*");
startActivityForResult(Intent.createChooser(intent,
"Share Photo"), SELECT_PICTURE);
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
if (resultCode == RESULT_OK) {
if (requestCode == SELECT_PICTURE) {
Uri selectedImageUri = data.getData();
String selectedImagePath = getPath(selectedImageUri);
selectedImageUri = selectedImageUri .replace("com.android.gallery3d","com.google.android.gallery3d");
if (selectedImageUri .startsWith("content://com.google.android.gallery3d")
|| selectedImageUri .startsWith("content://com.sec.android.gallery3d.provider") ) {
selectedImagePath = PicasaImage(selectedImageUri);
}
else
selectedImagePath = getPath(selectedImageUri);
}
imageView.setImageBitmap(BitmapFactory
.decodeFile(selectedImagePath));
Log.i("SELECTED IMAGE PATH: ", selectedImagePath);
}
}
private String PicasaImage(Uri imageUri) {
File cacheDir;
// if the device has an SD card
if (android.os.Environment.getExternalStorageState().equals(android.os.Environment.MEDIA_MOUNTED)) {
cacheDir = new File(android.os.Environment.getExternalStorageDirectory(),".OCFL311");
} else {
// it does not have an SD card
cacheDir = getCacheDir();
}
if(!cacheDir.exists()) cacheDir.mkdirs();
File f = new File(cacheDir, "tempPicasa");
try {
InputStream is = null;
if (imageUri.toString().startsWith("content://com.google.android.gallery3d")
|| imageUri.toString().startsWith("content://com.sec.android.gallery3d.provider")) {
is = getContentResolver().openInputStream(imageUri);
} else {
is = new URL(imageUri.toString()).openStream();
}
OutputStream os = new FileOutputStream(f);
//Utils.InputToOutputStream(is, os);
byte[] buffer = new byte[1024];
int len;
while ((len = is.read(buffer)) != -1) {
os.write(buffer, 0, len);
}
return f.getAbsolutePath();
} catch (Exception ex) {
Log.i(this.getClass().getName(), "Exception: " + ex.getMessage());
// something went wrong
ex.printStackTrace();
return null;
}
}
public String getPath(Uri uri) {
// just some safety built in
if( uri == null ) {
// TODO perform some logging or show user feedback
return null;
}
// try to retrieve the image from the media store first
// this will only work for images selected from gallery
String[] projection = { MediaStore.Images.Media.DATA };
Cursor cursor = managedQuery(uri, projection, null, null, null);
if( cursor != null ){
int column_index = cursor
.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
cursor.moveToFirst();
return cursor.getString(column_index);
}
// for other file managers
return uri.getPath();
}
答案 2 :(得分:0)
尝试下载位图:
URL url = new URL(sUrl);
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
InputStream is = connection.getInputStream();
Bitmap img = BitmapFactory.decodeStream(is);