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
<?xml version="1.0" encoding="utf-8"?>
<resources>
    <declare-styleable name="CalendarView">
 
        <attr name="week_background" format="color" />
        <attr name="week_text_color" format="color" />
 
        <attr name="calendar_card_view" format="string" /><!-- -->
 
        <attr name="scheme_text" format="string" />
        <attr name="scheme_text_size" format="dimension" />
        <attr name="scheme_text_color" format="color" />
        <attr name="scheme_month_text_color" format="color" />
        <attr name="scheme_lunar_text_color" format="color" />
        <attr name="scheme_theme_color" format="color" />
 
        <attr name="selected_theme_color" format="color" />
        <attr name="selected_text_color" format="color" />
 
        <attr name="current_day_text_color" format="color" />
        <attr name="current_month_text_color" format="color" />
        <attr name="other_month_text_color" format="color" />
        <attr name="lunar_text_color" format="color" />
        <attr name="other_month_lunar_text_color" format="color" />
 
 
        <attr name="min_year" format="integer" />
        <attr name="max_year" format="integer" />
 
        <attr name="scheme_theme_style" format="integer">
            <enum name="fill" value="1" />
            <enum name="stroke" value="2" />
        </attr>
 
        <attr name="selected_theme_style" format="integer">
            <enum name="fill" value="1" />
            <enum name="stroke" value="2" />
        </attr>
 
        <attr name="show_lunar" format="boolean" />
    </declare-styleable>
 
    <declare-styleable name="MonthView">
        <attr name="month_view_text_size" format="dimension" />
        <attr name="month_view_text_color" format="color" />
        <attr name="month_view_remark_color" format="color" />
    </declare-styleable>
 
    <declare-styleable name="CalendarLayout">
        <attr name="calendar_content_view_id" format="integer" />
    </declare-styleable>
 
 
</resources>