我很好奇如何从Android中的Gallery / Camera文件夹中获取图像。我正在调查文件管理器,无法真正掌握这些图像在文件系统中的位置。如果我去文件管理器,我无法找到拍摄照片的确切位置。如果我去Gallery应用程序,我会看到它们挂在“Camera”文件夹中。
关于我想要完成的事情:
获取所有现有照片,在某些时候保存并在我的活动中显示。我正在尝试允许手机用户从现有照片中为其个人资料指定头像。
答案 0 :(得分:5)
这是代码,以防有人需要它。这是在姜饼上测试的。
List<Image> existingPhotos = getCameraImages(this);
photosGrid = (GridView)findViewById(R.id.gvExistingPhotos);
LazyPhotosGridAdapter adapter = new LazyPhotosGridAdapter(this, existingPhotos);
photosGrid.setAdapter(adapter);
public String getRealPathFromURI(Uri contentUri) {
String[] proj = { MediaStore.Images.Media.DATA };
Cursor cursor = managedQuery(contentUri, proj, null, null, null);
int column_index = cursor.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
cursor.moveToFirst();
return cursor.getString(column_index);
}
public static List<Image> getCameraImages(Context context) {
final String[] projection = { MediaStore.Images.Media.DATA };
final String selection = MediaStore.Images.Media.BUCKET_ID + " = ?";
final String[] selectionArgs = { CAMERA_IMAGE_BUCKET_ID };
final Cursor cursor = context.getContentResolver().query(Images.Media.EXTERNAL_CONTENT_URI,
projection,
selection,
selectionArgs,
null);
List<Image> result = new ArrayList<Image>(cursor.getCount());
if (cursor.moveToFirst()) {
final int dataColumn = cursor.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
do {
final String data = cursor.getString(dataColumn);
result.add(new Image(data));
} while (cursor.moveToNext());
}
cursor.close();
return result;
}
public static final String CAMERA_IMAGE_BUCKET_NAME =
Environment.getExternalStorageDirectory().toString()
+ "/DCIM/Camera";
public static final String CAMERA_IMAGE_BUCKET_ID =
getBucketId(CAMERA_IMAGE_BUCKET_NAME);
/**
* Matches code in MediaProvider.computeBucketValues. Should be a common
* function.
*/
public static String getBucketId(String path) {
return String.valueOf(path.toLowerCase().hashCode());
}
答案 1 :(得分:1)
This answer可能有所帮助。这是一个常见问题,因此如果您在StackOverflow中搜索Android camera,则可能会得到结果。