使用选项卡标题替换垂直视图上的TitleBar默认值

时间:2013-07-17 11:38:00

标签: java android android-actionbar

一直在查看此linklink。但它确实解决了我的问题,我想用标题标签替换默认的标题和图标。

        // 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);

我一直在试验上面链接中的一些代码,但我没有得到我想要的东西。 水平视图非常好,但对于垂直视图,看起来标签正在创建另一个标题栏图层。这与水平视图不同。指导我这个。谢谢。

enter image description here enter image description here

1 个答案:

答案 0 :(得分:0)

我还没有解决这个问题,但我想我无法在垂直视图中将标签放在操作栏中,但如果它在水平视图中,它会直接进入操作栏部分。我的基础也来自其他应用程序。