本文介绍了安卓:工具栏文字颜色的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

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

styles.xml

 <资源>

    <样式名称=AppTheme父=Theme.AppCompat.Light.NoActionBar>

    < /风格>

    <样式名称=AppTheme.Toolbar.Title父=TextAppearance.Widget.AppCompat.Toolbar.Title>
        <! - 设置适当的标题尺寸 - >
        <项目名称=机器人:TEXTSIZE> @扪/ abc_text_size_title_material_toolbar< /项目>
        <项目名称=安卓重力>中心< /项目>
        <项目名称=机器人:文字颜色> @色/棕色< /项目>
    < /风格>

< /资源>
 

layout.xml

 < android.support.v7.widget.Toolbar
        的xmlns:机器人=htt​​p://schemas.android.com/apk/res/android
        的xmlns:程序=htt​​p://schemas.android.com/apk/res-auto
        机器人:ID =@ + ID /工具栏
        机器人:layout_alignParentBottom =真
        机器人:layout_width =match_parent
        机器人:layout_height =70dp
        机器人:背景=@可绘制/ toolbar_main
        风格=@风格/ AppTheme.Toolbar.Title>
    < /android.support.v7.widget.Toolbar>
 

colors.xml:

 < XML版本=1.0编码=UTF-8&GT?;
<资源>
    <项目名称=棕色型=色与GT;#b78c07< /项目>

    <整型数组名=androidcolors>
        <项目> @色/棕色< /项目>
    < /整数数组>
< /资源>
 

解决方案

您可以通过编程设定工具栏标题颜色

 随机RND =新的随机();
ToolBar.setTitleTextColor(Color.argb(255,rnd.nextInt(256),rnd.nextInt(256),rnd.nextInt(256)));
 

此设置一个随机颜色,在运行时,您可以将您的preferred颜色。 Col​​or.RED Col​​or.BLUE 等。

感谢

I'm trying to use a theme in my Toolbar. I want to change the text color but I can't do it, and I don't know why. The text color is not being applied, instead of be brown it appears me with black color. Can you please help me?

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>
解决方案

you can set the Toolbar title color programmatically

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

This sets a random color, at runtime, you can add your preferred colour.Color.RED,Color.BLUE etc.

THanks

这篇关于安卓:工具栏文字颜色的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-16 05:22