blob: 6461130a516d61e5f8a668f7d26b7ad6c0c542fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Theme.DSub.Light" parent="Theme.DSub.Light.Base">
<item name="android:windowTranslucentStatus">true</item>
</style>
<style name="Theme.DSub.Dark" parent="Theme.DSub.Dark.Base">
<item name="android:windowTranslucentStatus">true</item>
</style>
<style name="Theme.DSub.Black" parent="Theme.DSub.Black.Base">
<item name="android:windowTranslucentStatus">true</item>
</style>
<style name="Theme.DSub.Holo" parent="Theme.DSub.Holo.Base">
<item name="android:windowTranslucentStatus">true</item>
</style>
<style name="Theme.DSub.Light.No_Color" parent="Theme.DSub.Light.No_Color.Base">
<item name="android:windowTranslucentStatus">false</item>
<item name="android:statusBarColor">@android:color/black</item>
</style>
<style name="Theme.DSub.Black.No_Color" parent="Theme.DSub.Black.No_Color.Base">
<item name="android:windowTranslucentStatus">false</item>
<item name="android:statusBarColor">@android:color/black</item>
</style>
<style name="Theme.DSub.Dark.No_Color" parent="Theme.DSub.Dark.No_Color.Base">
<item name="android:windowTranslucentStatus">false</item>
<item name="android:statusBarColor">@android:color/black</item>
</style>
<style name="Theme.DSub.Holo.No_Color" parent="Theme.DSub.Holo.No_Color.Base">
<item name="android:windowTranslucentStatus">false</item>
<item name="android:statusBarColor">@android:color/black</item>
</style>
</resources>
|