如何在屏幕底部放置android“actionbar tab”

时间:2014-04-23 04:44:57

标签: android tabs android-actionbar

我想创建底部ActionBar Tab,而不是SplitActionBarWhenNarrow。那么我可以将android ActionBarTab放在屏幕的底部吗?

感谢。

1 个答案:

答案 0 :(得分:0)

这可以通过设置自定义操作栏视图,并在setupActionBar()中设置布局参数来完成,

    actionBar.setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM,
        ActionBar.DISPLAY_SHOW_CUSTOM);
    actionBar.setCustomView(v,
        new ActionBar.LayoutParams(ActionBar.LayoutParams.WRAP_CONTENT,
                ActionBar.LayoutParams.WRAP_CONTENT,
                Gravity.CENTER_VERTICAL | Gravity.RIGHT));

此处有更多信息,因为这是一个重复的问题,How can I force the Action Bar to be at the bottom in ICS?