Android状态栏颜色

时间:2016-10-13 13:29:38

标签: android xml android-fragments

使用android:fitsSystemWindows="false"

时,状态栏颜色有问题

变得透明。我不希望这种情况发生。我希望它的颜色为colorPrimaryDark

我必须将其设置为false,因为我在主要布局中使用了FrameLayout,这样我就可以在设置android:fitsSystemWindows="false" true时扩展叠加片段叠加占据整个屏幕,我不希望发生叠加片段。

我的activity_main看起来像这样。

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:background="@drawable/layout_bg_white"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="false"
tools:openDrawer="start"
tools:context="com.example.tabstrial2.MainActivity">

<RelativeLayout
    android:id="@+id/main_layout_of_app"
    android:layout_width="match_parent"
    android:layout_height="match_parent">




</RelativeLayout>


<FrameLayout
    android:id="@+id/overlay_fragment_container"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_marginBottom="56dp"
    android:layout_marginLeft="8dp"
    android:layout_marginRight="8dp"
    android:layout_marginTop="119dp" />

</android.support.v4.widget.DrawerLayout>

style.xml看起来像这样。

<resources>

<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
    <!-- Customize your theme here. -->
    <item name="colorPrimary">#500347</item>
    <item name="colorPrimaryDark">#862b7b</item>
    <item name="colorAccent">#1a2fcf</item>
    <item name="android:textColor">#ffffff</item>
    <item name="colorControlHighlight">#fff</item>
    <item name="colorControlActivated">@android:color/holo_green_dark</item>
    <item name="colorControlNormal">#fff</item>   <!-- normal border color      change as you wish -->
    <item name="colorButtonNormal">#500347</item>
</style>

<style name="AppTheme.NoActionBar">
    <item name="windowActionBar">false</item>
    <item name="windowNoTitle">true</item>
</style>

<style name="AppTheme.AppBarOverlay"      parent="ThemeOverlay.AppCompat.Dark.ActionBar" />

<style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />

<style name="AppTheme.Picker" parent="Theme.AppCompat.Light.NoActionBar">
    <item name="android:textColorPrimary">@android:color/white</item>
</style>

<!--<style name="AppTheme.CheckBox" parent="Theme.AppCompat.Light.NoActionBar">-->
<!--<item name="android:colorAccent">@android:color/white</item>-->
<!--</style>-->

<style name="MyCheckBox" parent="Theme.AppCompat.NoActionBar">
    <item name="colorControlNormal">#fff
    </item>   <!-- normal border color change as you wish -->
    <item name="colorControlActivated">#fff</item> <!-- activated color change as you wish -->
    <item name="android:textColor">#FFFF3F3C</item> <!-- checkbox text color -->
</style>

2 个答案:

答案 0 :(得分:2)

在setcontentview(...)

下方的活动中
 {$sort:{year:-1}},{$sort:{year:-1}});

答案 1 :(得分:0)

您可以尝试将状态栏颜色设置为显式

<item name="android:statusBarColor">@color/color_primary_dark</item>

或将半透明状态设置为false

<item name="android:windowTranslucentStatus">false</item>