如何在菜单背景上设置图片

时间:2018-08-09 17:15:52

标签: android xml menu background

这里的活动屏幕截图,我想在背景上添加一些与活动相同的图标 Screen shot of activity here i want to add some colors on background same as on activity

1 个答案:

答案 0 :(得分:1)

在res / values / styles.xml中创建样式

<style name="toolbarStyle" parent="ThemeOverlay.AppCompat.Light"> <item name="android:colorBackground">#4286f4</item> <item name="android:textColor">#ffffff</item> </style>

然后在工具栏的xml中应用该样式

app:Theme="@style/toolbarStyle"