Skip to content

Instantly share code, notes, and snippets.

View robertocapah's full-sized avatar
💭
Happy Coding 😆

robertocapah

💭
Happy Coding 😆
View GitHub Profile
@androidcodehunter
androidcodehunter / toolbarcolor
Created October 8, 2016 04:48
How to change toolbar back arrow color and title color?
From theme
<style name="SearchToolbar" parent="Theme.AppCompat.Light.NoActionBar">
//toolbar back arrow color
<item name="android:textColorSecondary">@android:color/white</item>
//toolbar title color
<item name="android:textColorPrimary">@android:color/white</item>
</style>
Also we can do it from java code: