aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/src/main/res/layout/linked_create_verify.xml
blob: 9f9dbcd973cb497205cf7edfd51274863a3491f1 (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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    tools:showIn="@layout/linked_create_github_fragment_step2">

    <ViewAnimator
        android:id="@+id/verify_progress"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="16dip"
        android:layout_marginStart="16dip"
        android:layout_gravity="center_vertical"
        android:inAnimation="@anim/fade_in"
        android:outAnimation="@anim/fade_out"
        >

        <ImageView
            android:layout_width="24dp"
            android:layout_height="24dp"
            android:id="@+id/verify_image"
            android:src="@drawable/status_signature_unverified_cutout_24dp"
            />

        <ProgressBar
            android:layout_width="24dp"
            android:layout_height="24dp"
            android:indeterminateOnly="true" />

    </ViewAnimator>

    <TextView
        android:id="@+id/verify_status"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_gravity="center_vertical"
        android:textAppearance="?android:attr/textAppearanceMedium"
        android:text="@string/linked_verify_pending"
        android:layout_marginLeft="16dip"
        android:layout_marginStart="16dip"
        android:layout_weight="1"
        />

    <ViewAnimator
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginRight="16dp"
        android:layout_marginEnd="16dip"
        android:inAnimation="@anim/fade_in"
        android:outAnimation="@anim/fade_out"
        android:id="@+id/verify_buttons"
        >

        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            style="?android:buttonBarButtonStyle"
            android:text="@string/linked_button_verify"
            android:id="@+id/button_verify"
            />

        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            style="?android:buttonBarButtonStyle"
            android:text="@string/linked_button_retry"
            android:id="@+id/button_retry"
            />

        <Space
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />

    </ViewAnimator>

</LinearLayout>