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 的片段。
期望的输出:在选项卡更改时,webView 不应每次都加载页面,而是将状态存储在 Bundle 中并在每次选项卡更改时加载包
实际输出:我可以使用 webView.savestate(bundle) 和 webView.restore(bundle) 来实现相同的效果。然而,过渡并不顺利。使用 bundle 加载页面很慢。我想要一个无延迟的过渡。
请帮我