material design - ColorPrimaryDark theme android doesnt display in all Activities in android -


i hope can me. created style.xml in values-v21, put theme entire application, colorprimarydark works in main activity , other activities not working.

    <application          android:allowbackup="true"          android:icon="@mipmap/ic_launcher"          android:theme="@style/apptheme"  ....  ....  </application>
values-v21/styles.xml        <style name="apptheme" parent="theme.appcompat.light.noactionbar">          <item name="colorprimary">@color/primary</item>          <item name="colorprimarydark">@color/primarydark</item>          <item name="coloraccent">@color/accent</item>          <item name="android:windowdrawssystembarbackgrounds">true</item>          <item name="android:statusbarcolor">@android:color/transparent</item>          <item name="android:textcolorprimary">@android:color/white</item>          <item name="colorcontrolnormal">@color/white</item>      </style>


Comments

Popular posts from this blog

javascript - Slick Slider width recalculation -

jsf - PrimeFaces Datatable - What is f:facet actually doing? -

angular2 services - Angular 2 RC 4 Http post not firing -