我在我的 android 应用程序中使用 KendoUi 图表,这些图表需要加载大量的 jquery。android webview 至少需要 6 秒来绘制图形。有什么办法可以加快加载过程。
我已经尝试过:
WebSettings settings = web.getSettings();
settings.setJavaScriptEnabled(true);
String data="html document from kendo";
web.loadDataWithBaseURL("file:///android_asset/", data,"text/html", "utf-8", null);
我补充说:
android:hardwareAccelerated="true"
在我的manifest
档案中。
我没有在这使用互联网。提前致谢