这取决于您对内置操作栏工件的依恋程度。您始终可以通过扩展您选择的布局来重绘当前操作栏,然后调用
getSherlockActivity().getSupportActionBar().setDisplayShowTitleEnabled(false);
getSherlockActivity().getSupportActionBar().setDisplayShowHomeEnabled(false);
getSherlockActivity().getSupportActionBar().setDisplayShowCustomEnabled(true);
// Inflate and do whatever you need to your view...
getSherlockActivity().getSupportActionBar().setCustomView(abView);
getSherlockActivity().getSupportActionBar().show();
当你想回到你的标准时(假设你使用 DrawerLayout 来做你的导航抽屉),你可以设置调用到setDisplayShowCustomEnabled(false)
(根据需要重新启用 showHome 和 showTitle)。