android – 如何更改工具栏颜色

前端之家收集整理的这篇文章主要介绍了android – 如何更改工具栏颜色前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我一直在搜索如何自定义工具栏,例如如何添加背景颜色,但我不明白它是如何工作的.

我一直在尝试为我的工具栏添加自定义样式,但任何结果……

清单

<application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/Theme.Design">

style.xml文件

<resources>

    <style name="Theme.Design" parent="Base.Theme.Design">
    </style>

    <style name="Base.Theme.Design" parent="Theme.AppCompat.Light.NoActionBar">
        <item name="colorPrimary">@color/red</item>
        <item name="colorPrimaryDark">@color/red</item>
        <item name="colorAccent">@color/red</item>
        <item name="android:textColorPrimary">@color/white</item>
        <item name="android:windowActionBarOverlay">true</item>
        <item name="windowActionBarOverlay">true</item>
    </style>    
    ...

和布局中的工具栏

<android.support.v7.widget.Toolbar
            android:id="@+id/home_toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"/>

解决方法

谢谢,但任何解决方案都有效.
<android.support.v7.widget.Toolbar
            android:id="@+id/home_toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary"/>

要么

toolbar.setBackgroundColor(Color.parseColor("#80000000"));

可能是因为我的工具栏在android.support.design.widget.CoordinatorLayout(放一个android.support.design.widget.FloatingActionButton)?

原文链接:https://www.f2er.com/android/314291.html

猜你在找的Android相关文章