styles.xml
2.37 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<resources>
<!-- Base application theme. -->
<style name="NoTitle_FullScreen_NoTrans" parent="Theme.AppCompat">
<!--设置无标题-->
<item name="android:windowNoTitle">true</item>
<!--是否半透明-->
<item name="android:windowIsTranslucent">false</item>
<!--是否全屏-->
<item name="android:windowFullscreen">true</item>
<!-- <item name="android:windowAnimationStyle">@style/notAnimation</item> -->
</style>
<declare-styleable name="NiceImageView">
<attr name="is_circle" format="boolean" />
<attr name="is_cover_src" format="boolean" />
<attr name="corner_radius" format="dimension" />
<attr name="corner_top_left_radius" format="dimension" />
<attr name="corner_top_right_radius" format="dimension" />
<attr name="corner_bottom_left_radius" format="dimension" />
<attr name="corner_bottom_right_radius" format="dimension" />
<attr name="border_width" format="dimension" />
<attr name="border_color" format="color" />
<attr name="inner_border_width" format="dimension" />
<attr name="inner_border_color" format="color" />
<attr name="mask_color" format="color" />
</declare-styleable>
<attr name="popupTextAlignment" format="enum">
<enum name="start" value="0" />
<enum name="end" value="1" />
<enum name="center" value="2" />
</attr>
<declare-styleable name="NiceSpinner">
<attr name="arrowTint" format="color" />
<attr name="hideArrow" format="boolean" />
<attr name="arrowDrawable" format="reference|color" />
<attr name="dropDownListPaddingBottom" format="dimension" />
<attr name="backgroundSelector" format="integer" />
<attr name="textTint" format="color" />
<attr name="popupTextAlignment" />
<attr name="entries" format="reference" />
</declare-styleable>
<style name="CheckBoxTheme" parent="Theme.AppCompat.Light">
<item name="colorControlNormal">#BEBEBE</item>
<item name="colorControlActivated">#87AADC</item>
</style>
<style name="MyEditText1" parent="Theme.AppCompat.Light">
<item name="colorControlNormal">@color/color_42bf58</item>
<item name="colorControlActivated">@color/color_42bf58</item>
</style>
</resources>