-1

我对 StatusBar 有疑问,我设法为它实现了如下样式:

<resources>
    <style name="AppTheme1" parent="Theme.AppCompat.Light.NoActionBar">
        <item name="colorPrimaryDark">#59000000</item>
        <item name="android:statusBarColor">#59000000</item>
        <item name="colorAccent">@color/blueAppBar</item>
        <item name="android:windowTranslucentStatus">true</item>
    </style>
</resources>

但是活动不能正常工作,就像这样:在此处输入图像描述

如您所见,状态栏没有着色,只是蓝色,就像背景一样。我应该怎么做才能让它着色?

4

1 回答 1

1

你不应该一起使用android:windowTranslucentStatusandroid:statusBarColor

您应该使用android:windowTranslucentStatusinvalues-v19android:statusBarColorin values-v21

这是一个示例配置:

值/样式.xml

<resources>

    <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
        <item name="colorPrimaryDark">#59000000</item>
        <item name="colorAccent">@color/blueAppBar</item>
    </style>

    <style name="AppTheme.NoActionBar">
    </style>
</resources>

值-v19/styles.xml

<resources>
    <style name="AppTheme.NoActionBar">
        <item name="android:windowTranslucentStatus">true</item>
    </style>
</resources>

值-v21/styles.xml

<resources>
    <style name="AppTheme.NoActionBar">
        <item name="android:statusBarColor">#59000000</item>
    </style>
</resources>

AndroidManifest.xml

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:supportsRtl="true"
    android:theme="@style/AppTheme" >
    <activity
        android:name=".MainActivity"
        android:label="@string/app_name"
        android:theme="@style/AppTheme.NoActionBar" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>
于 2015-10-22T14:46:36.913 回答