1
如果可能,如何在我的MainActivity.java類文件中僅使用代碼將web視圖添加到佈局中。通過MainActivity添加webview
如果可能,如何在我的MainActivity.java類文件中僅使用代碼將web視圖添加到佈局中。通過MainActivity添加webview
WebView webView = new WebView(this);
*setting up webview*
setContentView(webview);
或
ViewGroup yourLayout = (ViewGroup) LayoutInflater.from(this).inflate(R.layout.your_layout, null);
setContentView(yourLayout);
WebView webView = new WebView(this);
*setting up webview*
yourLayout.addView(webView);