我有几个带有 ActionBarSherlock 的选项卡,我想在该选项卡处于视图中时刷新特定选项卡。
我只是不知道我应该在我的 onOptionsItemSelected 中包含哪些代码。
任何帮助,将不胜感激。谢谢。
这是当前代码:
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case android.R.id.home:
//Toast.makeText(this, "home", Toast.LENGTH_LONG).show();
toggle();
return true;
case R.id.menu_search:
//Toast.makeText(this, "search", Toast.LENGTH_LONG).show();
return true;
case R.id.menu_refresh:
if (mViewPager.getCurrentItem()==1){
Toast.makeText(this, "refresh tab2", Toast.LENGTH_LONG).show();
// Code would go here I suppose...
}
default:
return super.onOptionsItemSelected(item);
}
}