aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/src/main/res/layout/keyspinner_key.xml
blob: 761566b75c8c3ebbe1f97e85436ff486003085e0 (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
<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:orientation="vertical"
              android:layout_width="wrap_content"
              android:padding="4dp"
              android:minHeight="24dp"
              android:layout_height="wrap_content">
    <TextView android:id="@android:id/title"
              android:textColor="?android:attr/textColorSecondary"
              android:textSize="18sp"
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:singleLine="true"
              android:ellipsize="end"
        />
    <TextView android:id="@android:id/text1"
              android:textColor="?android:attr/textColorTertiary"
              android:textSize="14sp"
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:singleLine="true"
              android:ellipsize="end"
              android:layout_marginTop="-4dip"
              android:text=".com"/>
    <TextView android:id="@android:id/text2"
              android:textColor="?android:attr/textColorTertiary"
              android:textSize="14sp"
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:singleLine="true"
              android:ellipsize="end"
              android:layout_marginTop="-4dip"
        />
</LinearLayout>