我想在actionbarsherlock中旋转刷新。以前我正在使用actionbar并且正在执行setRefreshActionItemState。
答案 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();