gpt4 book ai didi

android - 在Android中获取SDCard中所有图片的Uri

转载 作者:行者123 更新时间:2023-11-29 15:31:08 25 4
gpt4 key购买 nike

我想获取SDCARD的所有ImagesURIPath

我怎样才能做到这一点?

谢谢。

最佳答案

请试试这个。

String[] STAR = { "*" };

Cursor cursor = managedQuery(MediaStore.Images.Media.EXTERNAL_CONTENT_URI
, STAR, null, null, null);

if (cursor != null)
{
if (cursor.moveToFirst())
{
do
{
String path = cursor.getString(cursor
.getColumnIndex(MediaStore.Images.Media.DATA));

Log.i("Path",path);
}while (cursor.moveToNext());

}
cursor.close();
}

注意事项

不要忘记在 list 中授予读取 SD 卡的权限。

关于android - 在Android中获取SDCard中所有图片的Uri,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6568052/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com