【发布时间】:2013-12-07 17:31:53
【问题描述】:
我想在我的class 中添加一个进度条,但我只找到Extend Activity 并且我使用抽屉所以Fragment
这是我的代码如何添加这个progressbar
public class HomeFragment extends Fragment {
public HomeFragment(){}
WebView myWebView;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View root = inflater.inflate(R.layout.fragment_home, container, false);
myWebView = (WebView) root.findViewById(R.id.webview);
myWebView.setWebViewClient(new WebViewClient());
myWebView.loadUrl("http://192.168.1.11/MAMP/isn/profil.php");
return root;
}
}
【问题讨论】:
标签: android android-fragments webview progress