码迷,mamicode.com
首页 > 移动开发 > 详细

安卓 ToolBar 颜色样式设置

时间:2018-11-15 18:23:44      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:overlay   attr   弹出菜单   rsize   pat   enter   包括   out   idg   

设置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 颜色样式设置

标签:overlay   attr   弹出菜单   rsize   pat   enter   包括   out   idg   

原文地址:https://www.cnblogs.com/blogzhangwei/p/9964759.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!