aboutsummaryrefslogtreecommitdiff
path: root/library/src/main/res/values/attr.xml
blob: 6a3280786c475bc2a681fb9ad2d87694b18505d6 (plain)
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
<?xml version="1.0" encoding="utf-8"?>
<resources>

    <declare-styleable name="KauBoundedCardView">
        <attr name="kau_maxHeight" format="dimension" />
        <attr name="kau_maxHeightPercent" format="float" />
    </declare-styleable>

    <declare-styleable name="KauTextSlider">
        <attr name="kau_animation_type" format="enum">
            <enum name="none" value="1000" />
            <enum name="slide_horizontal" value="1001" />
            <enum name="slide_vertical" value="1002" />
        </attr>
    </declare-styleable>

    <declare-styleable name="KauInkPageIndicator">
        <attr name="kau_dotDiameter" format="dimension" />
        <attr name="kau_dotGap" format="dimension" />
        <attr name="kau_animationDuration" format="integer" />
        <attr name="kau_pageIndicatorColor" format="color" />
        <attr name="kau_currentPageIndicatorColor" format="color" />
    </declare-styleable>

    <declare-styleable name="KauElasticDragDismissFrameLayout">
        <attr name="kau_dragDismissDistance" format="dimension" />
        <attr name="kau_dragDismissFraction" format="float" />
        <attr name="kau_dragDismissScale" format="float" />
        <attr name="kau_dragElasticity" format="float" />
    </declare-styleable>

    <declare-styleable name="KauCutoutTextView">
        <attr name="kau_foregroundColor" format="color" />
        <attr name="android:text" />
        <attr name="android:minHeight" />
        <attr name="kau_heightPercentageToScreen" format="float" />
        <attr name="kau_font" format="string" />
    </declare-styleable>

</resources>