Welcome, guest! Login / Register - Why register?
Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)

Paste

Pasted as Java by webview ( 5 years ago )
webview for xml

<WebView
android:id="@+id/simpleWebView"  
android:layout_width="fill_parent"
android:layout_height="fill_parent" />



simpleWebView = findViewById(R.id.simpleWebView);

 simpleWebView.setWebViewClient(new MyWebViewClient());
 String url = "https://google.com/ui/";
 simpleWebView.getSettings().setJavaScriptEnabled(true);
 simpleWebView.loadUrl(url); // load the url on the web view
 }

 

Revise this Paste

Your Name: Code Language: