Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Changing color of header in multitask view?

I can't seem to find any documentation on changing the color of the header for each in app the multitask view. As you can see in the image below, all the headers are default white ( I know they are webpages, but just using the image to show what I want to be changing).

enter image description here

like image 353
Dragan Marjanovic Avatar asked Jan 08 '15 11:01

Dragan Marjanovic


1 Answers

I just created a plugin called "HeaderColor" for cordova (only for Android devices) that does what you want. I hope it helps you.


Installation:

cordova plugin add cordova-plugin-headercolor

Usage:

window.plugins.headerColor.tint("#becb29");

Result:

enter image description here


Github:

https://github.com/tomloprod/cordova-plugin-headercolor

like image 72
tomloprod Avatar answered Oct 22 '22 15:10

tomloprod