-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathmsv__attrs.xml
29 lines (24 loc) · 1.15 KB
/
msv__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
<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="MultiStateView">
<attr name="msvState">
<!-- The state is to show the content -->
<enum name="content" value="0x00" />
<!-- The state is to show loading indication -->
<enum name="loading" value="0x01" />
<!-- The state is to show network errors -->
<enum name="error_network" value="0x02" />
<!-- The state is to show other errors -->
<enum name="error_unknown" value="0x03" />
<!-- The state is to show empty view state -->
<enum name="empty" value="0x04" />
</attr>
<attr name="msvEmptyLayout" format="reference" />
<attr name="msvLoadingLayout" format="reference" />
<attr name="msvErrorUnknownLayout" format="reference" />
<attr name="msvErrorNetworkLayout" format="reference" />
<attr name="msvErrorTitleUnknownStringId" format="string" />
<attr name="msvErrorTitleNetworkStringId" format="string" />
<attr name="msvErrorTapToRetryStringId" format="string" />
</declare-styleable>
</resources>