How can I load a web view into a fragment?
I’ve tried the obvious but it opens a new browser and my nav disappears:
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;
}
I’ve also search stack overflow and the web, tried some of the examples but they do not work either, any help would be appreciated.
Thanks
I often had such situation, when after redirect page was opened in an external browser. Try to set
WebViewClientwith overriden shouldOverrideUrlLoading method which returns false.