Skip to content

Instantly share code, notes, and snippets.

@laaptu
Created October 16, 2013 14:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save laaptu/7009033 to your computer and use it in GitHub Desktop.
Save laaptu/7009033 to your computer and use it in GitHub Desktop.
public class ViewWeb extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.webview);
WebView wv;
wv = (WebView) findViewById(R.id.webView1);
wv.loadUrl("file:///android_asset/aboutcertified.html"); // now it will not fail here
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment