更改应用程序概述标题栏颜色(Android和Ionic)

时间:2017-07-17 10:59:43

标签: android ionic-framework colors

有没有办法改变下面标记的颜色?我正在使用Ionic v3.x并且无法在Ionic docs中找到任何内容。非常感谢任何提示!

Android App Overview Title Bar Color

2 个答案:

答案 0 :(得分:2)

Header Color plugin用于更改多任务视图中的标题颜色。

插件github页面:https://github.com/tomloprod/cordova-plugin-headercolor

来自Ionic文档的示例:

import { HeaderColor } from '@ionic-native/header-color';

constructor(private headerColor: HeaderColor) { }

...

this.headerColor.tint('#becb29');

答案 1 :(得分:1)

试试这个:

// set status bar to white
this.statusBar.backgroundColorByHexString('#ffffff');

Doc链接: https://ionicframework.com/docs/native/status-bar/