如何在Android中将操作栏标签中心对齐?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在Android中将操作栏标签中心对齐?相关的知识,希望对你有一定的参考价值。
android操作栏标签默认为左对齐,我想将其与操作栏的中心对齐。有什么方法可以让它成为中心吗?
答案
我能够通过自定义我的应用程序主题来居中对齐操作栏
在我的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行(纵向)时才有效
另一答案
您可以使用ViewPagerIndicator插件自定义选项卡。
希望能帮助到你!
以上是关于如何在Android中将操作栏标签中心对齐?的主要内容,如果未能解决你的问题,请参考以下文章