应用程序被操作系统强制关闭后,Android应用程序缓存是否被清除?
我正在构建一个 Android 应用程序,我需要在 SD 卡上本地保存一些文件。我想问的问题是,Android 操作系统是否会
mnt/sdcard/Android/data/app_name/cache/*
在由于内存不足(发送了 sigkill )而被操作系统关闭应用程序后清除应用程序缓存?
在什么条件或何时清除缓存。如果应用程序需要安全地保存某些文件,应该将它们存储在哪里?
im building an android app and i need to save some files locally on the SD card. The question i want to ask is that does the android OS clear the app cache
mnt/sdcard/Android/data/app_name/cache/*
get cleared after the app is closed by the os due to lack of memory ( sigkill sent) ?
In what conditions or when is the cache cleared. If the app needs to save some file safely where should it store them?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在这种情况下不应将其清除。
当然是当用户选择清除它或卸载应用程序时。由于存储条件不足,外部缓存目录不会自动清除。
这取决于你对“安全”的定义。
It should not be cleared in that case.
Definitely when the user elects to clear it, or when the app is uninstalled. The external cache directory is not automatically cleared due to low storage conditions.
That depends on your definition of "safely".