如何从OI文件管理器路径获取位图图像?

时间:2011-01-10 11:53:02

标签: android

我的应用程序需要从图库中选择图像。

我开始活动:

Intent intent = new Intent();
intent.setType("image/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(intent,"Select Picture"), PICK_IMAGE);

它将提示从图库或OI文件管理器中选择

对于OI文件管理器,我从Uri获得如下路径:

Uri selectedImageUri = data.getData();
filemanagerstring = selectedImageUri.getPath();

现在如何从filemanagerstring获取位图图像?

1 个答案:

答案 0 :(得分:9)

您可以使用:

BitmapFactory.decodeFile(String pathName);

查看here