blob: 31c5b74f98eb11ed86d7eb7c190a8b6691b9e34a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<resources>
<style name="Kau.Translucent">
<item name="android:windowBackground">@color/kau_shadow_overlay</item>
<item name="android:colorBackgroundCacheHint">@null</item>
<item name="android:windowContentOverlay">@null</item>
<item name="android:windowIsFloating">false</item>
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowNoTitle">true</item>
</style>
<style name="Kau.Translucent.NoAnimation">
<item name="android:windowAnimationStyle">@null</item>
</style>
<!--Transitions are only v21+-->
<style name="Kau.Translucent.SlideBottom" />
<style name="Kau.Translucent.SlideTop" />
</resources>
|