aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/src/main/res/layout/status_indicator.xml
blob: 6419e3e3404265601d111f2706a0e44d4cfa3546 (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
<?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android">

    <ImageView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:src="@drawable/ic_chevron_right_grey_24dp"
        />

    <ProgressBar
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:indeterminate="true"
        />

    <ImageView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:src="@drawable/ic_check_white_24dp"
        android:tint="@color/android_green_light"
        />

    <ImageView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:src="@drawable/ic_close_white_24dp"
        android:tint="@color/android_red_light"
        />

</merge>