aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/src/main/res/layout/passphrase_repeat_dialog.xml
blob: 9ce8f01fad7274bca9843dd0da07f301e28717b8 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:custom="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:paddingTop="16dp"
    android:paddingBottom="16dp"
    android:paddingLeft="24dp"
    android:paddingRight="24dp">

    <CheckBox
        android:id="@+id/passphrase_no_passphrase"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/label_no_passphrase" />

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="8dp"
        android:layout_marginBottom="8dp">

        <org.sufficientlysecure.keychain.ui.widget.PassphraseEditText
            android:id="@+id/passphrase_passphrase"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="8dp"
            android:layout_marginBottom="8dp"
            android:imeOptions="actionNext"
            android:hint="@string/label_passphrase"
            android:inputType="textPassword"
            android:ems="10"
            android:layout_gravity="center_horizontal" />

        <org.sufficientlysecure.keychain.ui.widget.PasswordStrengthBarView
            android:id="@+id/passphrase_repeat_passphrase_strength"
            android:layout_width="48dp"
            android:layout_height="8dp"
            android:layout_gravity="end|center_vertical"
            custom:strength="medium"
            custom:showGuides="false"
            custom:color_fail="@color/password_strength_low"
            custom:color_weak="@color/password_strength_medium"
            custom:color_strong="@color/password_strength_high" />

    </FrameLayout>

    <EditText
        android:id="@+id/passphrase_passphrase_again"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginBottom="8dp"
        android:imeOptions="actionDone"
        android:inputType="textPassword"
        android:hint="@string/label_passphrase_again"
        android:ems="10"
        android:layout_gravity="center_horizontal" />

</LinearLayout>