Skip to content

Instantly share code, notes, and snippets.

@ugjka
Forked from saurabhalang/MainActivity.java
Created October 23, 2019 14:13
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 ugjka/20b4630964cc289052dda18ac528565d to your computer and use it in GitHub Desktop.
Save ugjka/20b4630964cc289052dda18ac528565d to your computer and use it in GitHub Desktop.
How to convert any Website into Android App in Android Studio?
// add this code to the onCreate method of your MainActivity.java File
String url ="URL" ; // Replace URL with your website address like this "http://google.com"
WebView view = (WebView) this.findViewById(R.id.webView);
view.getSettings().setJavaScriptEnabled(true);
view.loadUrl(url);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment