Skip to content

Instantly share code, notes, and snippets.

@FlorianX
Created October 5, 2011 07:37
Show Gist options
  • Save FlorianX/1263865 to your computer and use it in GitHub Desktop.
Save FlorianX/1263865 to your computer and use it in GitHub Desktop.
Android Activity
// create a webView
WebView webView = (WebView)findViewById(R.id.webView);
// enable some settings
WebSettings settings = webView.getSettings();
settings.setJavaScriptEnabled(true);
settings.setDomStorageEnabled(true);
// use the WebChromeClient
webView.setWebChromeClient(new WebChromeClient());
// load the html files
webView.loadUrl("file:///android_asset/www/index.html");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment