Which of the following sets the entire Activity window as a WebView?

A.
WebView webview = new WebView(this);
webview.setAsWindow;
B.
setContentView(R.layout.webview);
C.
WebView webview = new WebView(this);
setContentView(webview);
D.
setContentView(“http://www.androidatc.com”);
B, I suppose, I didn’t try all of these though
No, I think it will be C. Since it would be required to create the webview in onCreate() method
I have the same idea. C