自定义Android应用程序主题与半透明通知和导航栏

时间:2013-12-28 05:46:32

标签: android android-actionbar transparent android-theme android-4.4-kitkat

自从Android 4.4推出以来,我有一个关于半透明通知和导航栏的大问题:

如何制作自定义主题,以使通知栏与操作栏颜色相同,导航栏与当前活动的颜色相同?

一个很好的例子是Trello应用程序:

enter image description here

enter image description here

即使您打开导航抽屉,导航栏仍会保留其颜色。如何实现这一目标?

1 个答案:

答案 0 :(得分:0)

您可以使用新的(从4.4开始)Theme.Holo.NoActionBar.TranslucentDecorTheme.Holo.Light.NoActionBar.TranslucentDecor主题。或者您可以在主题中设置windowTranslucentNavigation。您还希望通过在布局中将fitsSystemWindows设置为true来填充系统栏后面的区域。

Android 4.4 APIs changes document

中的更多信息