一直在查看此link,link。但它确实解决了我的问题,我想用标题标签替换默认的标题和图标。
// 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);
我一直在试验上面链接中的一些代码,但我没有得到我想要的东西。 水平视图非常好,但对于垂直视图,看起来标签正在创建另一个标题栏图层。这与水平视图不同。指导我这个。谢谢。
答案 0 :(得分:0)
我还没有解决这个问题,但我想我无法在垂直视图中将标签放在操作栏中,但如果它在水平视图中,它会直接进入操作栏部分。我的基础也来自其他应用程序。