安卓 ToolBar 颜色样式设置

Posted 别人眼中的过客

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了安卓 ToolBar 颜色样式设置相关的知识,希望对你有一定的参考价值。

设置Toolbar弹出菜单的字体颜色和背景颜色,包括三个点菜单颜色和返回图标的颜色。

 

布局文件xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <android.support.v7.widget.Toolbar
        android:id="@+id/titleBar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="?attr/colorPrimary"
        app:layout_scrollFlags="scroll|enterAlways"
        style="@style/ToolbarStyle"/>

    <LinearLayout
        android:id="@+id/group"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical" />
</LinearLayout>

样式代码文件xml

 <!--溢出菜单样式 -->
    <style name="AppTheme.PopupOverlay">
        <item name="overlapAnchor">false</item>
        <item name="android:dropDownWidth">wrap_content</item>
        <item name="android:colorBackground">@color/colorPrimary</item>
        <item name="android:textColor">@color/textColorPrimary</item>
    </style>

    <style name="ToolbarStyle" parent="Theme.AppCompat.Light.NoActionBar">
        <item name="popupTheme">@style/AppTheme.PopupOverlay</item>
        <item name="theme">@style/ToolbarTheme</item>
    </style>

    <!--设置按钮颜色-->
    <style name="ToolbarTheme">
        <!-- Used to tint the back arrow, menu and spinner arrow -->
        <item name="colorControlNormal">@color/textColorPrimary</item>
    </style>

颜色属性

    <color name="colorPrimary">#3F51B5</color>
    <color name="textColorPrimary">#e6e6e6</color>

 

以上是关于安卓 ToolBar 颜色样式设置的主要内容,如果未能解决你的问题,请参考以下文章

iOS TabbarController 设置底部Toolbar图片和文字颜色选中样式

安卓Design包之NavigationView结合DrawerLayout,toolbar的使用,FloatingActionButton

安卓界面之Toolbar+tablayout+viewpager仿WhatsApp界面样式

css设置的字体颜色在安卓个苹果为啥不一样

安卓ProgressBar水平进度条的颜色设置

Toolbar使用