gpt4 book ai didi

android - android webview 浏览器是否支持 html5 功能?

转载 作者:IT老高 更新时间:2023-10-28 23:17:15 28 4
gpt4 key购买 nike

我有基于 HTML5 的 Web 应用程序,我希望它与 WebView 集成,那么 android webview 浏览器是否支持 html5 功能?

最佳答案

WebView 支持它们,但你必须打开它们。我使用以下代码打开所有可用的功能。这是必要的,因为所有 Android 版本都不支持应用程序缓存:

    wv = (WebView) findViewById(R.id.webview);
WebSettings ws = wv.getSettings();

ws.setJavaScriptEnabled(true);
ws.setAllowFileAccess(true);


if (Build.VERSION.SDK_INT>=Build.VERSION_CODES.ECLAIR) {
try {
Log.d(TAG, "Enabling HTML5-Features");
Method m1 = WebSettings.class.getMethod("setDomStorageEnabled", new Class[]{Boolean.TYPE});
m1.invoke(ws, Boolean.TRUE);

Method m2 = WebSettings.class.getMethod("setDatabaseEnabled", new Class[]{Boolean.TYPE});
m2.invoke(ws, Boolean.TRUE);

Method m3 = WebSettings.class.getMethod("setDatabasePath", new Class[]{String.class});
m3.invoke(ws, "/data/data/" + getPackageName() + "/databases/");

Method m4 = WebSettings.class.getMethod("setAppCacheMaxSize", new Class[]{Long.TYPE});
m4.invoke(ws, 1024*1024*8);

Method m5 = WebSettings.class.getMethod("setAppCachePath", new Class[]{String.class});
m5.invoke(ws, "/data/data/" + getPackageName() + "/cache/");

Method m6 = WebSettings.class.getMethod("setAppCacheEnabled", new Class[]{Boolean.TYPE});
m6.invoke(ws, Boolean.TRUE);

Log.d(TAG, "Enabled HTML5-Features");
}
catch (NoSuchMethodException e) {
Log.e(TAG, "Reflection fail", e);
}
catch (InvocationTargetException e) {
Log.e(TAG, "Reflection fail", e);
}
catch (IllegalAccessException e) {
Log.e(TAG, "Reflection fail", e);
}
}

关于android - android webview 浏览器是否支持 html5 功能?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10599739/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com