-
Notifications
You must be signed in to change notification settings - Fork 199
/
attrs.xml
35 lines (28 loc) · 1.12 KB
/
attrs.xml
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
<?xml version="1.0" encoding="utf-8"?>
<resources>
<attr name="shadowOffsetX" format="float" />
<attr name="shadowOffsetY" format="float" />
<attr name="shadowAlpha" format="float" />
<attr name="calculateAsync" format="boolean" />
<attr name="showWhenAllReady" format="boolean" />
<attr name="animateShadow" format="boolean" />
<attr name="animationDuration" format="integer" />
<declare-styleable name="MaterialShadowViewWrapper">
<attr name="shadowOffsetX" />
<attr name="shadowOffsetY" />
<attr name="shadowAlpha" />
<attr name="calculateAsync" />
<attr name="showWhenAllReady" />
<attr name="animateShadow" />
<attr name="animationDuration" />
</declare-styleable>
<declare-styleable name="MaterialShadowFrameLayoutWrapper">
<attr name="shadowOffsetX" />
<attr name="shadowOffsetY" />
<attr name="shadowAlpha" />
<attr name="calculateAsync" />
<attr name="showWhenAllReady" />
<attr name="animateShadow" />
<attr name="animationDuration" />
</declare-styleable>
</resources>