Skip to content

Instantly share code, notes, and snippets.

@j-onathan
Last active August 29, 2015 14:04
Show Gist options
  • Save j-onathan/62c6470ac93dfbdd5c29 to your computer and use it in GitHub Desktop.
Save j-onathan/62c6470ac93dfbdd5c29 to your computer and use it in GitHub Desktop.
private void setUpWebView()
{
mWebView = new WebView(getContext());
mWebView.setVerticalScrollBarEnabled(false);
mWebView.setHorizontalScrollBarEnabled(false);
mWebView.setWebViewClient(new FbDialog.FbWebViewClient());
mWebView.getSettings().setJavaScriptEnabled(true);
mWebView.loadUrl(mUrl);
mWebView.setLayoutParams(FILL);
mContent.addView(mWebView);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment