嗨,我正在开发一个 Android Gallery 应用程序,我正在从内置图库中获取图像并显示它。我正在使用如下代码
String[] projection = {MediaStore.Images.Thumbnails._ID};
Cursor cursor = getContentResolver().query(MediaStore.Images.Thumbnails.INTERNAL_CONTENT_URI,
projection, // Which columns to return
null, // Return all rows
null,
null);
int columnIndex = cursor.getColumnIndexOrThrow(MediaStore.Images.Thumbnails._ID);
int size = cursor.getCount();
// If size is 0, there are no images on the SD Card.
if (size == 0)
{
Log.e("size 0","0");
}
问题是当我在只有内部存储(Galaxy Nexus)的手机上运行此代码时,我得到的日志显示大小为零,即使内置图库中有图像。我该如何解决这个问题。请帮助。谢谢!