如何将 Web 视图加载到片段中?
我已经尝试了显而易见的方法,但它会打开一个新的浏览器并且我的导航消失了:
public View onCreateView(LayoutInflater inflater, ViewGroup group, Bundle saved)
{
View mainView = (View) inflater.inflate(R.layout.frag_a, group, false);
myWebView = (WebView) mainView.findViewById(R.id.webview);
myWebView.loadUrl("http://www.bbc.co.uk");
return mainView;
}
我还搜索了堆栈溢出和网络,尝试了一些示例,但它们也不起作用,任何帮助将不胜感激。
谢谢