securesmartcam / app / src / main / res / values / styles.xml @ 9fa2835a
History | View | Annotate | Download (3.17 KB)
1 |
<?xml version="1.0" encoding="utf-8"?>
|
---|---|
2 |
<!--
|
3 |
/*
|
4 |
**
|
5 |
** /res/values/styles.xml
|
6 |
**
|
7 |
** Lorensius W. L. T <lorenz@londatiga.net>
|
8 |
**
|
9 |
*/
|
10 |
-->
|
11 |
|
12 |
<resources>
|
13 |
|
14 |
<!-- Base application theme. -->
|
15 |
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar"> |
16 |
<!-- Customize your theme here. -->
|
17 |
<item name="colorPrimary">@color/colorPrimary</item> |
18 |
<item name="colorPrimaryDark">@color/colorPrimaryDark</item> |
19 |
<item name="colorAccent">@color/colorAccent</item> |
20 |
</style>
|
21 |
|
22 |
<style name="AppTheme.NoActionBar" parent="AppTheme"> |
23 |
<item name="windowActionBar">false</item> |
24 |
<item name="windowNoTitle">true</item> |
25 |
</style>
|
26 |
|
27 |
<style name="Animations" /> |
28 |
|
29 |
<!-- PopDownMenu -->
|
30 |
<!--
|
31 |
|
32 |
<style name="Animations.PopDownMenu" />
|
33 |
|
34 |
<style name="Animations.PopDownMenu.Left">
|
35 |
<item name="@android:windowEnterAnimation">@anim/grow_from_topleft_to_bottomright</item>
|
36 |
<item name="@android:windowExitAnimation">@anim/shrink_from_bottomright_to_topleft</item>
|
37 |
</style>
|
38 |
|
39 |
<style name="Animations.PopDownMenu.Right">
|
40 |
<item name="@android:windowEnterAnimation">@anim/grow_from_topright_to_bottomleft</item>
|
41 |
<item name="@android:windowExitAnimation">@anim/shrink_from_bottomleft_to_topright</item>
|
42 |
</style>
|
43 |
|
44 |
<style name="Animations.PopDownMenu.Center">
|
45 |
<item name="@android:windowEnterAnimation">@anim/grow_from_top</item>
|
46 |
<item name="@android:windowExitAnimation">@anim/shrink_from_bottom</item>
|
47 |
</style>
|
48 |
-->
|
49 |
|
50 |
<!-- PopUpMenu -->
|
51 |
<!--
|
52 |
<style name="Animations.PopUpMenu" />
|
53 |
|
54 |
<style name="Animations.PopUpMenu.Left">
|
55 |
<item name="@android:windowEnterAnimation">@anim/grow_from_bottomleft_to_topright</item>
|
56 |
<item name="@android:windowExitAnimation">@anim/shrink_from_topright_to_bottomleft</item>
|
57 |
</style>
|
58 |
|
59 |
<style name="Animations.PopUpMenu.Right">
|
60 |
<item name="@android:windowEnterAnimation">@anim/grow_from_bottomright_to_topleft</item>
|
61 |
<item name="@android:windowExitAnimation">@anim/shrink_from_topleft_to_bottomright</item>
|
62 |
</style>
|
63 |
|
64 |
<style name="Animations.PopUpMenu.Center">
|
65 |
<item name="@android:windowEnterAnimation">@anim/grow_from_bottom</item>
|
66 |
<item name="@android:windowExitAnimation">@anim/shrink_from_top</item>
|
67 |
</style>
|
68 |
-->
|
69 |
|
70 |
<style name="CustomTheme"> |
71 |
<item name="android:windowNoTitle">true</item> |
72 |
<item name="android:paddingTop">10px</item> |
73 |
</style>
|
74 |
<style name="Theme.CustomDialog" parent="android:style/Theme.Dialog"> |
75 |
<item name="android:windowNoTitle">true</item> |
76 |
<item name="android:padding">10px</item> |
77 |
</style>
|
78 |
|
79 |
<style name="TextAppearanceNormal" parent="@android:style/TextAppearance.Medium"> |
80 |
<item name="android:textColor">@android:color/white</item> |
81 |
<item name="android:textSize">17sp</item> |
82 |
</style>
|
83 |
|
84 |
<style name="TextAppearanceSmall" parent="@android:style/TextAppearance.Small"> |
85 |
<item name="android:textColor">@android:color/white</item> |
86 |
<item name="android:textSize">11sp</item> |
87 |
</style>
|
88 |
|
89 |
<style name="TextAppearanceObscureOption" parent="@android:style/TextAppearance.Small"> |
90 |
<item name="android:textColor">@android:color/white</item> |
91 |
<item name="android:textSize">11sp</item> |
92 |
</style>
|
93 |
|
94 |
<style name="TextAppearanceObscureOptionSelected" parent="TextAppearanceObscureOption"> |
95 |
<item name="android:textStyle">bold</item> |
96 |
</style>
|
97 |
|
98 |
</resources>
|