mirror of
https://github.com/moparisthebest/open-keychain
synced 2024-12-19 05:42:17 -05:00
63 lines
2.2 KiB
XML
63 lines
2.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:minHeight="?android:attr/listPreferredItemHeight"
|
|
android:paddingLeft="4dp"
|
|
android:paddingRight="?android:attr/scrollbarSize"
|
|
android:singleLine="true">
|
|
|
|
<CheckBox
|
|
android:id="@+id/selected"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:clickable="false"
|
|
android:focusable="false"
|
|
android:focusableInTouchMode="false" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="0dip"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:orientation="vertical"
|
|
android:paddingLeft="5dip"
|
|
android:layout_gravity="center_vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/mainUserId"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Alice"
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
<TextView
|
|
android:id="@+id/mainUserIdRest"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="alice@example.com"
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
|
|
|
<TextView
|
|
android:id="@+id/keyId"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="0xBBBBBBBBBBBBBBB"
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
android:typeface="monospace" />
|
|
</LinearLayout>
|
|
|
|
|
|
<TextView
|
|
android:gravity="right"
|
|
android:paddingLeft="4dp"
|
|
android:minWidth="90dip"
|
|
android:id="@+id/status"
|
|
android:paddingTop="4dp"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="expired"
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
android:textStyle="italic"
|
|
android:layout_gravity="right" />
|
|
|
|
</LinearLayout> |