2014-10-22 16:38:44 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent" >
|
|
|
|
|
2015-07-09 12:26:19 +00:00
|
|
|
<RelativeLayout
|
2014-10-22 16:38:44 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_toLeftOf="@+id/button_remove"
|
|
|
|
android:padding="8dp" >
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/key"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2015-07-13 10:55:13 +00:00
|
|
|
android:textColor="@color/black87"
|
2015-07-09 12:26:19 +00:00
|
|
|
android:layout_alignParentLeft="true"
|
2014-10-22 16:38:44 +00:00
|
|
|
android:textSize="?attr/TextSizeBody"
|
|
|
|
android:typeface="monospace" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/key_type"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2015-07-13 10:55:13 +00:00
|
|
|
android:textColor="@color/black54"
|
2015-07-09 12:26:19 +00:00
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_below="@+id/key"
|
2014-10-22 16:38:44 +00:00
|
|
|
android:textSize="?attr/TextSizeInfo"/>
|
2015-07-09 12:26:19 +00:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/key_trust"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_below="@+id/key"
|
|
|
|
android:visibility="gone"
|
|
|
|
android:textColor="@color/black54"
|
|
|
|
android:textSize="?attr/TextSizeInfo"/>
|
|
|
|
</RelativeLayout>
|
2014-10-22 16:38:44 +00:00
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/button_remove"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:background="?android:selectableItemBackground"
|
2015-04-28 12:46:52 +00:00
|
|
|
android:padding="@dimen/image_button_padding"
|
2015-01-22 04:00:35 +00:00
|
|
|
android:src="?attr/icon_remove"
|
2014-10-22 16:38:44 +00:00
|
|
|
android:visibility="invisible" />
|
|
|
|
|
2015-07-10 00:56:44 +00:00
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/button_trust"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:background="?android:selectableItemBackground"
|
|
|
|
android:padding="@dimen/image_button_padding"
|
|
|
|
android:src="?attr/icon_done"
|
|
|
|
android:visibility="invisible" />
|
2014-10-22 16:38:44 +00:00
|
|
|
</RelativeLayout>
|