android webview 浏览器是不是支持 html5 功能?
Posted
技术标签:
【中文标题】android webview 浏览器是不是支持 html5 功能?【英文标题】:Does android webview browsers support html5 features?android webview 浏览器是否支持 html5 功能? 【发布时间】:2012-05-22 21:44:37 【问题描述】:我有基于 html5 的 Web 应用程序,我希望它与 WebView 集成,那么 android webview 浏览器是否支持 html5 功能?
【问题讨论】:
见这里:***.com/questions/3930045/… 【参考方案1】: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);
【讨论】:
我的 AndroidStudio 一直告诉我不要硬编码/data
。如何替换这两个匹配项?
嗨 @Bowi 使用 context.getFilesDir().getPath()
从 Android P 开始,如果以前这样做,这几乎肯定不会起作用 - see here
那个 /data 位置到底在哪里?
我正在寻找我的 Angular 9 没有按预期启动的原因。你救了我!谢谢!【参考方案2】:
在你的安卓浏览器上打开这个链接:http://html5test.com它会给你所有你需要的信息:解析规则、画布、视频、音频、元素、表单、webapp...
【讨论】:
感谢@moujib,这太棒了,它也可以在桌面浏览器中帮助我【参考方案3】:感谢@theomega 我使用以下方式启用轻触来进行选择并激活鼠标悬停。
try
WebSettings.class.getMethod("setLightTouchEnabled", new Class[]Boolean.TYPE);
catch (SecurityException e)
e.printStackTrace();
catch (NoSuchMethodException e)
e.printStackTrace();
【讨论】:
【参考方案4】:您没有具体说明您要查找的功能, 但 Android(和 ios)使用 Webkit。所以是的。
【讨论】:
其实我在看像这样的拖放、视频、画布功能 其实默认的Android浏览器在支持HTML5的特性方面存在一些问题。也许这个presentation 会对你有所帮助。以上是关于android webview 浏览器是不是支持 html5 功能?的主要内容,如果未能解决你的问题,请参考以下文章
Android Webview 是不是支持 CSS3 WebKit 动画?