webview load url

Solutions on MaxInterview for webview load url by the best coders in the world

showing results for - "webview load url"
Alessia
12 Oct 2019
1webView.loadUrl("https://google.com");
Mia
13 Feb 2018
1// Private variable
2private WebView web;
3
4// Locating the webView ID form (For example activity_main)
5myWebView = findViewById(R.id.myWebView);
6
7// Loading the URL (google.com) into the webview
8web.loadUrl("https://google.com");