Android Javascript 应用程序比浏览器内的同一应用程序慢
我使用 WebView 将一个在屏幕上打印 200 条文本消息的 JavaScript 应用程序封装到一个 Android 应用程序中。完全相同的应用程序在本机 Android 浏览器中的执行速度比已安装的应用程序快大约 2 倍。为什么会这样?有没有办法加快安装应用程序的速度? Android版本为2.3.3,设备为Motorola Droid 3。
I wrapped a JavaScript app that prints 200 text messages on the screen into an Android app using WebView. The exact same app executes in the native Android browser about 2x faster than the installed app. Why is that, and is there a way to speed it up as an installed app? The Android version is 2.3.3 and the device is Motorola Droid 3.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
与浏览器功能相比,WebView 功能受到限制。提高性能最重要的事情之一是减小 js 文件(所有静态文件)的大小,因为根据我的经验,加载需要更多时间。
WebView capabilities are limited as compared to Browser capabilities. One of the most important thing to improve performance would be to reduce the size of your js file (all static files) as from my experience loading takes more time.