Does android webview browsers support html5 features?

前端 未结 4 2149
失恋的感觉
失恋的感觉 2020-12-07 17:07

I have HTML5 based web application i want it to integrate with WebView ,So does android webview browsers support html5 features?

4条回答
  •  执笔经年
    2020-12-07 17:30

    Thanks @theomega I used the following way to enable using light touches to make a selection and activate mouseovers.

    try {
        WebSettings.class.getMethod("setLightTouchEnabled", new Class[]{Boolean.TYPE});
    } catch (SecurityException e) {         
        e.printStackTrace();
    } catch (NoSuchMethodException e) {         
        e.printStackTrace();
    } 
    

提交回复
热议问题