我定义了一个fragement并且它被加载到一个活动中,活动布局中有一个进度条,如何在片段中显示进度条
答案 0 :(得分:0)
如何在片段
中显示活动的进度条
在Fragment中使用CGContextAddEllipseInRect()
来访问来自片段的父活动的视图:
getActivity().findViewById
现在使用Progressbar progressBar = (ProgressBar)
getActivity().findViewById(R.id.progress_bar_id);
来展示和隐藏progressBar
。
注意:确保在活动中调用Progressbar
后在FragmentManager中添加片段