aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/res/layout/contact_key.xml
blob: 7053857fb1aa456bfa784306051570b12c717ff5 (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
<?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" >

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_toLeftOf="@+id/button_remove"
        android:orientation="vertical"
        android:padding="8dp" >

        <TextView
            android:id="@+id/key"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textColor="@color/primarytext"
            android:textSize="?attr/TextSizeBody"
            android:typeface="monospace" />

        <TextView
            android:id="@+id/key_type"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textColor="@color/secondarytext"
            android:textSize="?attr/TextSizeInfo"/>
    </LinearLayout>

    <ImageButton
        android:id="@+id/button_remove"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_centerVertical="true"
        android:background="?android:selectableItemBackground"
        android:padding="8dp"
        android:src="@drawable/ic_action_remove"
        android:visibility="invisible" />

</RelativeLayout>