Android:工具栏文字颜色

时间:2015-03-05 22:16:05

标签: android android-appcompat android-toolbar

我试图在我的工具栏中使用主题。我想改变文字颜色,但我不能这样做,我也不知道为什么。文字颜色没有被应用,而不是棕色,它看起来像黑色。你能帮我吗?

styles.xml

<resources>

    <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">

    </style>

    <style name="AppTheme.Toolbar.Title" parent="TextAppearance.Widget.AppCompat.Toolbar.Title">
        <!-- Set proper title size -->
        <item name="android:textSize">@dimen/abc_text_size_title_material_toolbar</item>
        <item name="android:gravity">center</item>
        <item name="android:textColor">@color/brown</item>
    </style>

</resources>

layout.xml

<android.support.v7.widget.Toolbar
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:id="@+id/toolbar"
        android:layout_alignParentBottom="true"
        android:layout_width="match_parent"
        android:layout_height="70dp"
        android:background="@drawable/toolbar_main"
        style="@style/AppTheme.Toolbar.Title">    
    </android.support.v7.widget.Toolbar>

colors.xml:

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <item name="brown" type="color">#b78c07</item>

    <integer-array name="androidcolors">
        <item>@color/brown</item>
    </integer-array>
</resources>

2 个答案:

答案 0 :(得分:6)

您可以通过编程方式设置Toolbar标题颜色

Random rnd = new Random(); 
ToolBar.setTitleTextColor(Color.argb(255, rnd.nextInt(256), rnd.nextInt(256), rnd.nextInt(256)));

这会设置一个随机颜色,在运行时,您可以添加首选颜色。 Color.REDColor.BLUE等。

感谢

答案 1 :(得分:4)

您可以使用以下内容:

<android.support.v7.widget.Toolbar
  app:theme="@style/MyToolbar" />


<style name="MyToolbar" parent="Theme.AppCompat.NoActionBar">
  <!-- android:textColorPrimary is the  color of the title text
     in the Toolbar, in the Theme.AppCompat theme:  -->
  <item name="android:textColorPrimary">@color/my_color</item>

  <!-- android:textColorPrimaryInverse is the  color of the title
       text in the Toolbar, in the Theme.AppCompat.Light theme:  -->
 <item name="android:textColorPrimaryInverse">@color/my_color</item>
</style>