如何在Android中将操作栏标签中心对齐?

时间:2014-04-07 10:47:22

标签: android android-actionbar

默认情况下,Android操作栏标签左对齐,我想将其与操作栏的中心对齐。有什么方法可以让它成为中心吗?

2 个答案:

答案 0 :(得分:5)

我能够通过自定义我的应用主题

来居中对齐操作栏

在我的AndroidManifest.xml中,我添加了一个android:theme属性:

<application
        android:label="@string/app_name"
        android:icon="@drawable/ic_launcher"
        android:theme="@style/CustomActionBarTheme">
  ...

然后我在我的项目中添加了一个新的themes.xml文件,并添加了:

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <!-- the theme applied to the application or activity -->
    <style name="CustomActionBarTheme"
           parent="@android:style/Theme.Holo.Light.DarkActionBar">
        <item name="android:actionBarTabBarStyle">@style/MyActionBarTabBar</item>
    </style>

    <style name="MyActionBarTabBar">
        <item name="android:gravity">center</item>
    </style>
</resources>

标签现在应该居中对齐。

编辑: 仅当您的操作栏显示在2行(纵向)

时才有效

答案 1 :(得分:0)

您可以使用ViewPagerIndicator插件自定义标签。

希望它有所帮助!