从片段中添加actionBar中的刷新微调器?

时间:2014-01-06 13:52:31

标签: android android-fragments android-actionbar

我有一个带有简单按钮的片段,该按钮向API发出http请求,如何在单击按钮时从actionBar中创建项目进行更新?

1 个答案:

答案 0 :(得分:2)

如果您使用的是ActionBarSherlock:

getActivity().setSupportProgressBarIndeterminateVisibility(true);

如果您使用的是原生ActionBar:

// call that before your setContentView
getActivity().requestWindowFeature(android.view.Window.FEATURE_INDETERMINATE_PROGRESS);

//then, when you want you can show/hide it :
getActivity().setProgressBarIndeterminateVisibility(Boolean.TRUE);