aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/src/main/res/values/attr.xml
blob: 7e8b9834374fc57d2042c944211473b95507b1c6 (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
<?xml version="1.0" encoding="utf-8"?>
<resources>

    <declare-styleable name="ToolableViewAnimator">
        <attr name="initialView" format="integer" />
    </declare-styleable>

    <declare-styleable name="FoldableLinearLayout">
        <attr name="foldedLabel" format="string" />
        <attr name="unFoldedLabel" format="string" />
    </declare-styleable>

    <!-- Taken from Matt Allen Password Strength View
        https://github.com/matt-allen/android-password-strength-indicator -->
    <declare-styleable name="PasswordStrengthView">
        <attr name="strength" format="enum">
            <enum name="weak" value="0" />
            <enum name="medium" value="1" />
            <enum name="strong" value="2" />
        </attr>
        <attr name="showGuides" format="boolean" />
        <attr name="color_fail" format="color" />
        <attr name="color_weak" format="color" />
        <attr name="color_strong" format="color" />
    </declare-styleable>

    <declare-styleable name="PrefixedEditText">
        <attr name="prefix" format="string" />
    </declare-styleable>

</resources>