aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/res/layout/contact_key.xml
blob: 03246ccb90ce8909e69e22049eb80bb149c77a08 (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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="match_parent" >

    <RelativeLayout
        android:id="@+id/key_data"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:paddingTop="8dp"
        android:paddingLeft="8dp"
        android:paddingBottom="8dp">

        <TextView
            android:id="@+id/key"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textColor="@color/primaryText"
            android:layout_alignParentLeft="true"
            android:layout_toLeftOf="@+id/tgl_trust"
            android:textSize="?attr/TextSizeBody"
            android:typeface="monospace"
            android:fontFamily="monospace"/>

        <TextView
            android:id="@+id/key_type"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textColor="@color/secondaryText"
            android:layout_alignParentLeft="true"
            android:layout_below="@+id/key"
            android:maxLines="1"
            android:textSize="?attr/TextSizeInfo"/>

        <TextView
            android:id="@+id/key_trust"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:layout_below="@+id/key"
            android:visibility="gone"
            android:textColor="@color/secondaryText"
            android:textSize="?attr/TextSizeInfo"/>

    <ImageButton
        android:id="@+id/button_remove"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_toRightOf="@+id/key"
        android:layout_centerVertical="true"
        android:background="?android:selectableItemBackground"
        android:padding="@dimen/image_button_padding"
        android:src="?attr/icon_remove"
        android:visibility="gone" />

    <Switch
        android:id="@+id/tgl_trust"
        android:visibility="invisible"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_centerVertical="true"/>

    </RelativeLayout>
</RelativeLayout>