Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发一个Android应用程序,它从外部存储读取图像进行图像处理,在外部存储的“图片”中创建一个新文件夹并将处理后的图像存储在其中。
标准的 android 库需要很长时间,甚至需要重新启动才能识别新文件夹。
有没有办法以编程方式更新android画廊,以便我的新文件夹从画廊中被识别?
触发 mediascanner 再次读取所有媒体文件。使用这段代码:
sendBroadcast(new Intent(Intent.ACTION_MEDIA_MOUNTED, Uri.parse("file://" + Environment.getExternalStorageDirectory())));
这是非常低效的,因为它将开始读取整个 SDCard 以进行更改。