mirror of
https://github.com/moparisthebest/open-keychain
synced 2024-11-07 01:35:00 -05:00
96 lines
3.5 KiB
XML
96 lines
3.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Copyright (C) 2010 Thialfihar <thi@thialfihar.org>
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="?android:attr/listPreferredItemHeight"
|
|
android:layout_marginRight="?android:attr/scrollbarSize"
|
|
android:orientation="vertical"
|
|
android:singleLine="true" >
|
|
|
|
<LinearLayout
|
|
android:id="@+id/keyLayout"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:paddingLeft="8dip"
|
|
android:paddingRight="3dip" >
|
|
|
|
<ImageView
|
|
android:id="@+id/ic_masterKey"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:paddingRight="6dip"
|
|
android:src="@drawable/key_small" />
|
|
|
|
<TextView
|
|
android:id="@+id/keyId"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:paddingRight="5dip"
|
|
android:text="Key ID"
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
android:typeface="monospace" />
|
|
|
|
<TextView
|
|
android:id="@+id/keyDetails"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="(RSA, 1024bit)"
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:layout_gravity="center_vertical"
|
|
android:gravity="right"
|
|
android:orientation="horizontal"
|
|
android:paddingBottom="2dip"
|
|
android:paddingTop="2dip" >
|
|
|
|
<ImageView
|
|
android:id="@+id/ic_encryptKey"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:src="@drawable/encrypted_small" />
|
|
|
|
<ImageView
|
|
android:id="@+id/ic_signKey"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:src="@drawable/signed_small" />
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/userIdLayout"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingLeft="36dip"
|
|
android:singleLine="true" >
|
|
|
|
<TextView
|
|
android:id="@+id/userId"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:paddingRight="3dip"
|
|
android:text="User ID"
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
|
</LinearLayout>
|
|
|
|
</LinearLayout> |