Skip to content

Instantly share code, notes, and snippets.

View ugjka's full-sized avatar
☁️
Be like a burnt rope and let the winds take the ashes

Uģis Ģērmanis ugjka

☁️
Be like a burnt rope and let the winds take the ashes
View GitHub Profile
@ugjka
ugjka / MainActivity.java
Created October 23, 2019 14:13 — forked from saurabhalang/MainActivity.java
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);