aboutsummaryrefslogtreecommitdiffstats
path: root/OpenPGP-Keychain/src/main/res/layout/view_key_certs_fragment.xml
blob: 40db5e766b1232be300d2a182deff90f8a6e1050 (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
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:bootstrapbutton="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fillViewport="true">

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">

        <view
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            class="se.emilsjolander.stickylistheaders.StickyListHeadersListView"
            android:id="@+id/list"
            android:layout_alignParentTop="true"
            android:layout_above="@+id/showUnknown"
            android:paddingRight="32dp"
            android:layout_alignParentLeft="true"
            android:layout_alignParentStart="true"
            android:paddingLeft="16dp" />

        <CheckBox
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/show_unknown_signatures"
            android:id="@+id/showUnknown"
            android:enabled="true"
            android:layout_alignParentBottom="true"
            android:layout_alignEnd="@+id/list"
            android:singleLine="false"
            android:layout_alignParentRight="true"
            android:layout_marginRight="16dp" />

    </RelativeLayout>

</ScrollView>