我正在使用roughike在我的android项目中实现底栏导航。我没有使用任何图标图像,因为我觉得使用图像&保持分辨率比使用fontawesome图标更复杂。所以我用这种方式写了代码:
<com.roughike.bottombar.BottomBar
android:id="@+id/menu_bottomBar"
android:layout_width="match_parent"
android:layout_height="60dp"
app:bb_titleTypeFace="fonts/fontawesome.ttf"
android:layout_alignParentBottom="true"
app:bb_tabXmlResource="@xml/bottombar_tabs" />
标签在bottombar_tabs.xml
文件中定义:
<tabs>
<tab
id="@+id/tab_home"
title="\uf278" />
<tab
id="@+id/tab_chat"
title="\uf0e6" />
<tab
id="@+id/tab_globe"
title="\uf0ac" />
<tab
id="@+id/tab_friends"
title="\uf0c0" />
<tab
id="@+id/tab_profile"
title="\uf2be" />
</tabs>
导航功能按预期正常工作,但所有选项卡标题显示在导航顶部。如何使其垂直居中?我尝试使用gravity,layout_gravity但没有任何效果。 感谢您的帮助,谢谢, 罗宾
答案 0 :(得分:1)
您可以尝试更改容器gravity
(容器是主机标签Views
,如ImageView
,TextView
等等。
for (int i = 0; i < mBottomBar.getTabCount(); i++) {
mBottomBar.getTabAtPosition(i).setGravity(Gravity.CENTER_VERTICAL);
}