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 编写一个简单的应用程序,基本上它通过 webview 启动一个网站。当我运行这个应用程序时,即使在后台,它也会继续消耗数据。它很小(每 10 分钟几个字节)有没有办法防止这种数据消耗?换句话说,告诉 webview 小睡一下,停止消费数据,并在应用程序处于前台时唤醒(刷新页面)。
应用程序中运行了其他进程(javascript)
您还可以在 webView 上调用 onPause() 以停止其上的 javascript。