gpt4 book ai didi

android - 如果数据库中的 "Image name"与目录中的 "Image Name"匹配,则在 gridview 中显示图像

转载 作者:行者123 更新时间:2023-11-30 03:14:55 24 4
gpt4 key购买 nike

我是 android 和编程概念的新手,我有点卡在 atm 上,可以朝正确的方向插入。

我正在开发一个应用程序,该应用程序具有允许用户捕获图像的功能,将该图像存储在应用程序的文件系统中,并将对该图像的引用存储在 sqlite 数据库中。我解释这个HERE ,并得到了一些关于我将如何在数据库中存储引用的良好反馈...我选择只存储图像的文件名

这里真正的问题是我不知道如何着手 retrieving the image reference from the database and display the images in a grid view 。我认为这可行的方法是进行如下查询:

IF (image name in database == image name in file system) { Display those images only }

我不知道如何实现这个,任何帮助或见解将不胜感激,谢谢!

最佳答案

你可以这样做:

从数据库中检索所有图像名称,然后检查它们是否存在于文件系统中。

if(new File(FOLDERPATH + File.separator + file_name_in_db).exists()) {
// add file to list to be set in grid view adapter
}

关于android - 如果数据库中的 "Image name"与目录中的 "Image Name"匹配,则在 gridview 中显示图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20291327/

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