android:如何修改状态栏的字体颜色

时间:2015-10-08 06:25:44

标签: android android-statusbar

如何修改状态栏的字体颜色? 我发现一些Android应用程序可以修改状态栏的字体颜色。我不知道该怎么做。

以下两张图片有助于描述这个问题。谢谢!

the one after I open the application

the one before I open the application

一个的字体颜色是白色,而另一个是黑色。

3 个答案:

答案 0 :(得分:1)

由于Material Design的发布,您可以更改状态栏的颜色。 首先,您必须告诉您的应用程序通过清单使用材料设计(您可以使用您选择的材料主题):

android:theme="@android:style/Theme.Material.Light"

要使用材料设计,您的应用程序的minSDK必须为21(棒棒糖),或者您可以使用v7支持库用于以前的版本。

  

https://developer.android.com/tools/support-library/features.html#v7

现在,有一些方法可以设置状态栏的颜色。 首先,使用您想要的颜色动态地通过活动更改它(您必须将颜色“蓝色”声明为您的资源) - 在您的活动内部类型:

getWindow().setStatusBarColor(getResources().getColor(R.color.blue));

第二个是通过资源xml扩展材料设计:

<resources>
<!-- inherit from the material theme -->
<style name="AppTheme" parent="android:Theme.Material">
<!-- Main theme colors -->
<!--   your app branding color for the app bar -->
<item name="android:colorPrimary">@color/primary</item>
<!--   darker variant for the status bar and contextual app bars -->
<item name="android:colorPrimaryDark">@color/primary_dark</item>
<!--   theme UI controls like checkboxes and text fields -->
<item name="android:colorAccent">@color/accent</item>

<!--  USE THIS FOR STATUS BAR COLOR -->
<item name="android:statusBarColor">@color/blue</item>
</style>
</resources>
  

https://developer.android.com/training/material/theme.html#ColorPalette

快速测试请使用选项一,希望我帮助你!

答案 1 :(得分:0)

试试这个。

将此行放在gradle的依赖关系结构中。

compile "com.android.support:appcompat-v7:21.0.+"

在您的values / themes.xml

<style name="Theme.MyTheme" parent="Theme.AppCompat.Light">
    <!-- Here we setting appcompat’s actionBarStyle -->
    <item name="actionBarStyle">@style/MyActionBarStyle</item>

    <!-- ...and here we setting appcompat’s color theming attrs -->
    <item name="colorPrimary">@color/my_awesome_red</item>
    <item name="colorPrimaryDark">@color/my_awesome_darker_red</item>

    <!-- The rest of your attributes -->
</style>

有关详细信息: - https://chris.banes.me/2014/10/17/appcompat-v21/

答案 2 :(得分:0)

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
            Window window = getWindow();
            window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
            window.setStatusBarColor(R.color.your_color);
        }