Wanted to get WebView
browser properties in android.
Able to get properties like navigator.userAgent, screen.width, screen.height etc.
webView.evaluateJavascript("navigator.javaEnabled()", new ValueCallback<String>() {
@Override
public void onReceiveValue(String value) {
Log.v("TAG", "JavaEnabled : " + value);
}
});
Along with this looking forward to get HTTP request Accept header in android WebView.
Is there any way to get same? Any help is welcome