刷新状态在行动吧Sherlock

时间:2013-02-27 07:39:52

标签: android android-actionbar actionbarsherlock

我想在actionbarsherlock中旋转刷新。以前我正在使用actionbar并且正在执行setRefreshActionItemState。

1 个答案:

答案 0 :(得分:0)

对于刷新状态,您可以尝试使用此链接获取答案Refresh menu item animation in ActionBarSherlock ..

case R.id.refreshMenuItem:
    isRefreshing = true;
    item.setActionView(R.layout.action_bar_indeterminate_progress);
    ImageView iv = (ImageView) item.getActionView().findViewById(R.id.loadingImageView);
    ((AnimationDrawable) iv.getDrawable()).start();