Answers for "how to load url from webview"

0

webview load url

// Private variable
private WebView web;

// Locating the webView ID form (For example activity_main)
myWebView = findViewById(R.id.myWebView);

// Loading the URL (google.com) into the webview
web.loadUrl("https://google.com");
Posted by: Guest on June-05-2021
0

webview load url

webView.loadUrl("https://google.com");
Posted by: Guest on June-05-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language