如何通过Styles.XML集中自定义操作栏的标题文本

时间:2017-10-10 14:54:37

标签: android layout android-styles

我刚刚从styles.xml类创建了一个自定义操作栏,它按照我想要的方式显示。我已经从清单文件中激活了它。

<style name="customStyle" parent="@style/Theme.AppCompat.Light.NoActionBar">
        <item name="actionBarStyle">@style/customActionBarStyle</item>
        <item name="android:textColorPrimary">@color/titletextcolor</item>
    </style>

    <style name="customActionBarStyle" parent="@style/Widget.AppCompat.Light.ActionBar.Solid.Inverse">
        <item name="background">@drawable/custom</item>
    </style>

但是,我试图找到一种方法来从styles.xml文件中对操作栏上的标题文本进行CENTRALIZE。任何人都可以帮忙解决这个问题。

我尝试使用它:<item name="android:layout_gravity">center</item>。但它没有效果。

我在网上看到的大多数建议都需要单独创建工具栏布局。但我已经做到了这一点,而不是我想要的,因为它需要更多的代码。

谢谢。

1 个答案:

答案 0 :(得分:0)

要在ABS中设置一个居中的标题(如果你想在默认的ActionBar中使用它,只需删除方法名称中的“支持”),你可以这样做:

在您的活动中,在onCreate()方法中:

getSupportActionBar().setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM); 
getSupportActionBar().setCustomView(R.layout.abs_layout);

abs_layout

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:text="my Title"
        android:textColor="#ffffff"
        android:id="@+id/mytext"
        android:textSize="18sp" />

</LinearLayout>

现在你应该只拥有一个Actionbar标题。如果要设置自定义背景,请在上面的布局中进行设置(但不要忘记设置android:layout_height="match_parent")。

或与:

getSupportActionBar().setBackgroundDrawable(getResources().getDrawable(R.drawable.yourimage));