Skip to content

Instantly share code, notes, and snippets.

@William-ST
Created October 11, 2015 13:36
Show Gist options
  • Save William-ST/5fb26b6417371d795e2b to your computer and use it in GitHub Desktop.
Save William-ST/5fb26b6417371d795e2b to your computer and use it in GitHub Desktop.
/*
xml:
<WebView
android:id="@+id/webview"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
*/
WebView webView;
webView = (WebView) findViewById(R.id.webview);
webView.getSettings().setJavaScriptEnabled(true);
webView.loadUrl(url);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment