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.
我有一个WebView支持 html5 功能的示例应用程序,我有一个存储离线数据和检索离线存储数据的网站,但是每当我强制关闭应用程序时,它都会丢失所有保存的数据。
WebView
我应该做些什么来处理强制关闭?
提前致谢 :)
我也有这个问题,发现 Activity 和 WebView 这种奇怪的行为:
如果您在布局 xml 中声明了超过 1 个 Web 视图,则强制关闭/重启将不会保留缓存的离线数据。
所以解决这个问题,我在布局 xml 中只保留了 1 个 web 视图,而我动态添加到视图组中的其他 web 视图。这可以防止离线数据丢失。希望这可以帮助。