The current implementation of WebView
already allows you to add headers using the following syntax:
Map headers = new HashMap();
headers.put("Accept-Language", "fr_fr");
mWebView.loadUrl("http://developer.android.com", headers);
See WebView.loadUrl() for more information.