0

我在使用 ActionBarSherlock、fragment 和 indeterminateprogressBar 时遇到问题。我的 fragmentpageradapter 和 pagertabstrip 有一个 sherlockFragmentActivity。

我想在片段中按下按钮时显示不确定的进度条。我宣布

 requestWindowFeature(Window.FEATURE_INDETERMINATE_PROGRESS); 

在 SherlockFragment Activity 中,但是当在片段中调用

 getSherlockActivity.getParent().setProgressBarIndeterminateVisibility(true) 

我得到一个错误。如果在sherlockFragmentActivity中调用,吧,工作。

对不起,我的英语不好。谢谢

4

1 回答 1

3

I solved the issue, I create method in FragmentActivity

public void progressOn() {
    setSupportProgressBarIndeterminateVisibility(true);
}
public void progressOff() {
setSupportProgressBarIndeterminateVisibility(false);
}

and and I have called them in the fragment with

((MainActivity) getSherlockActivity()).progressOn();

and

((MainActivity) getSherlockActivity()).progressOff();

thanks anyway

于 2012-12-03T19:52:11.503 回答