aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/src/main/res/layout/cert_list_widget.xml
blob: 7e3dbcdf48b3d0df3420b8fa85d7d5f2ce03b494 (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
<?xml version="1.0" encoding="utf-8"?>
<org.sufficientlysecure.keychain.ui.widget.CertListWidget
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/linked_id_certs"
    tools:showIn="@layout/linked_id_view_fragment">

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        tools:ignore="UseCompoundDrawables">

        <TextView
            android:id="@+id/cert_collapsed_list"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:textAppearance="?android:attr/textAppearanceMedium"
            android:gravity="center_vertical"
            android:layout_weight="1"
            tools:text="The identity is not yet verified or confirmed."
            />

        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center_vertical"
            android:src="@drawable/ic_expand_more_black_24dp"
            android:id="@+id/cert_expand_button"
            android:padding="4dp"
            />

        </LinearLayout>

    <ListView
        android:id="@+id/cert_expanded_list"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content">
    </ListView>

</org.sufficientlysecure.keychain.ui.widget.CertListWidget>