toolbar中设置menu收起图标颜色以及popupwindow弹出位置

1、设置menu收起图标颜色,就是那三个点的图标这里写图片描述,默认的如果使用light style 就是 黑色的,如果使用 dark style 就是白色的。
如何能够自定义颜色?

 -- Base application theme. -->
    

2、一般情况下,点击收起menu的按钮,popwindow会覆盖在toolbar上,不美观,如何能够让popwindow在toolbar下方显示呢?

 

    

然后在toolbar中设置app:popupTheme

 .support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?android:actionBarSize"
        android:background="?attr/colorPrimary"
        app:navigationIcon="@mipmap/back"
        app:popupTheme="@style/ToolbarPopupTheme">
.support.v7.widget.Toolbar>

效果如下
toolbar中设置menu收起图标颜色以及popupwindow弹出位置_第1张图片

你可能感兴趣的:(Android,toolbar,menu,popwindow)