aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/src/main/res/layout/recipient_box_entry.xml
blob: 8857a89af8fe1c0e1d19fa0fe6040d4d198af527 (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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/attachment_bg_holo">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@android:id/text1"
        android:layout_gravity="center_vertical"
        android:padding="4dp" />

    <ImageView
        android:id="@android:id/icon"
        android:layout_width="32dip"
        android:layout_height="32dip"
        android:layout_marginLeft="12dip"
        android:cropToPadding="true"
        android:background="#ccc"
        android:scaleType="centerCrop"
        android:src="@drawable/ic_person_grey_24dp" />

</LinearLayout>