I have HTML5 based web application i want it to integrate with WebView ,So does android webview browsers support html5 features?
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();
}