一直在检查这个链接,链接。但它确实解决了我的问题,我想用标题选项卡替换默认标题和图标。
// Set up the action bar.
final ActionBar actionBar = getActionBar();
// Specify that the Home/Up button should not be enabled, since there is no hierarchical
// parent.
actionBar.setHomeButtonEnabled(false);
// Specify that we will be displaying tabs in the action bar.
actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);
我一直在尝试上面链接中的一些代码,但没有得到我想要的。水平视图很好,但对于垂直视图,选项卡似乎正在创建另一个标题栏层。这与水平视图不同。在这方面指导我。谢谢你。