Saturday, February 13, 2016

Android 5.0: how to change recent apps title color?


I build android apps using Cordova and it is great. I wanted to change the Title color bar when you view you resent apps on android 5.

I spend quite some time trying to figure this out as I know little about the android development ways but always keen to learn so this is how I managed it:

Under your platforms > android > res folder add a new "values-v14" folder. Add a themes.xml file to the folder:




Now add your colors.xml under your values folder:



Now go to your AndroidManifest.xml file located under the platforms > android folder and change the android:theme attribute to android:theme="@style/MyAppTheme" :



Run the cordova CLI: $ cordova run Android

And awesome we have a custom colored title.