This repository was archived by the owner on Oct 23, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathattrs.xml
More file actions
executable file
·87 lines (84 loc) · 4.44 KB
/
attrs.xml
File metadata and controls
executable file
·87 lines (84 loc) · 4.44 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="FloatingActionButton">
<attr name="fab_colorNormal" format="color" />
<attr name="fab_colorPressed" format="color" />
<attr name="fab_colorDisabled" format="color" />
<attr name="fab_colorRipple" format="color" />
<attr name="fab_showShadow" format="boolean" />
<attr name="fab_shadowColor" format="color" />
<attr name="fab_shadowRadius" format="dimension" />
<attr name="fab_shadowXOffset" format="dimension" />
<attr name="fab_shadowYOffset" format="dimension" />
<attr name="fab_size" format="enum">
<enum name="normal" value="0" />
<enum name="mini" value="1" />
</attr>
<attr name="fab_showAnimation" format="reference" />
<attr name="fab_hideAnimation" format="reference" />
<attr name="fab_label" format="string" />
<attr name="fab_elevationCompat" format="dimension" />
<attr name="fab_progress_color" format="color" />
<attr name="fab_progress_backgroundColor" format="color" />
<attr name="fab_progress_indeterminate" format="boolean" />
<attr name="fab_progress_max" format="integer" />
<attr name="fab_progress" format="integer" />
<attr name="fab_progress_showBackground" format="boolean" />
</declare-styleable>
<declare-styleable name="FloatingActionMenu">
<attr name="menu_showShadow" format="boolean" />
<attr name="menu_buttonSpacing" format="dimension" />
<attr name="menu_labels_margin" format="dimension" />
<attr name="menu_labels_showAnimation" format="reference" />
<attr name="menu_labels_hideAnimation" format="reference" />
<attr name="menu_labels_paddingTop" format="dimension" />
<attr name="menu_labels_paddingLeft" format="dimension" />
<attr name="menu_labels_paddingRight" format="dimension" />
<attr name="menu_labels_paddingBottom" format="dimension" />
<attr name="menu_labels_padding" format="dimension" />
<attr name="menu_labels_textColor" format="color" />
<attr name="menu_labels_textSize" format="dimension" />
<attr name="menu_labels_cornerRadius" format="dimension" />
<attr name="menu_labels_showShadow" format="boolean" />
<attr name="menu_labels_colorNormal" format="color" />
<attr name="menu_labels_colorPressed" format="color" />
<attr name="menu_labels_colorRipple" format="color" />
<attr name="menu_labels_position" format="enum">
<enum name="left" value="0" />
<enum name="right" value="1" />
</attr>
<attr name="menu_icon" format="reference" />
<attr name="menu_animationDelayPerItem" format="integer" />
<attr name="menu_buttonToggleAnimation" format="reference" />
<attr name="menu_labels_singleLine" format="boolean" />
<attr name="menu_labels_ellipsize" format="enum">
<enum name="none" value="0" />
<enum name="start" value="1" />
<enum name="middle" value="2" />
<enum name="end" value="3" />
<enum name="marquee" value="4" />
</attr>
<attr name="menu_labels_maxLines" format="integer" />
<attr name="menu_fab_size" format="enum">
<enum name="normal" value="0" />
<enum name="mini" value="1" />
</attr>
<attr name="menu_labels_style" format="reference" />
<attr name="menu_shadowColor" format="color" />
<attr name="menu_shadowRadius" format="dimension" />
<attr name="menu_shadowXOffset" format="dimension" />
<attr name="menu_shadowYOffset" format="dimension" />
<attr name="menu_colorNormal" format="color" />
<attr name="menu_colorPressed" format="color" />
<attr name="menu_colorRipple" format="color" />
<attr name="menu_openDirection" format="enum">
<enum name="up" value="0" />
<enum name="down" value="1" />
</attr>
<attr name="menu_backgroundColor" format="color" />
<attr name="menu_fab_label" format="string" />
<attr name="menu_fab_show_animation" format="reference" />
<attr name="menu_fab_hide_animation" format="reference" />
<attr name="menu_closeOnTouchOutside" format="boolean" />
</declare-styleable>
</resources>