Fix status bar being white

This commit is contained in:
Sylvia van Os
2019-12-27 17:34:58 +01:00
parent 4e2fe97de5
commit d9f97380d9
2 changed files with 1 additions and 1 deletions

View File

@@ -198,6 +198,7 @@ public class LoyaltyCardViewActivity extends AppCompatActivity
// Make notification area light if dark icons are needed
window.getDecorView().setSystemUiVisibility(backgroundNeedsDarkIcons ? View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR : 0);
window.setStatusBarColor(Color.TRANSPARENT);
// Set shadow colour of store text so even same color on same color would be readable
storeName.setShadowLayer(1, 1, 1, backgroundNeedsDarkIcons ? Color.BLACK : Color.WHITE);

View File

@@ -4,6 +4,5 @@
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
<item name="android:windowDrawsSystemBarBackgrounds">true</item>
<item name="android:statusBarColor">@android:color/transparent</item>
</style>
</resources>