Advertisement
Oonebox

java class

Dec 8th, 2014
263
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.57 KB | None | 0 0
  1.     String LocalFile = "file:///android_asset/sports.htm";
  2.  
  3.     WebView webView = (WebView) findViewById(R.id.vidwebview);
  4.     WebSettings webSettings = webView.getSettings();
  5.     webSettings.setJavaScriptEnabled(true);
  6.     webSettings.setPluginsEnabled(true);
  7.  
  8.     webSettings.setLoadWithOverviewMode(true);
  9.     webSettings.setUseWideViewPort(true);
  10.     webSettings.setAllowFileAccess(true);
  11.  
  12.     webView.setBackgroundColor(Color.BLACK);
  13.     webView.setVerticalScrollBarEnabled(false);
  14.     webView.setHorizontalScrollBarEnabled(false);
  15.     webView.loadUrl(LocalFile);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement