如何將Web視圖加載到片段中?在片段中的Web視圖 - Android
我嘗試了很明顯,但它會打開一個新的瀏覽器和導航我消失:
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;
}
我也搜索棧溢出和Web,嘗試了一些的例子,但他們沒有任何工作, 任何幫助,將不勝感激。
感謝
有沒有如何使用這樣的例子。 – panthro 2012-08-03 11:45:07
加上它需要API 11,我想下降到7. – panthro 2012-08-03 11:46:04
是的你是對的沒有可用的文檔。 – 2012-08-03 11:47:29