2015-03-05 01:58:36 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2015-03-15 21:41:04 +01:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2015-03-05 01:58:36 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:minHeight="?android:attr/listPreferredItemHeight"
|
|
|
|
|
android:orientation="horizontal"
|
2015-03-15 21:41:04 +01:00
|
|
|
android:singleLine="true"
|
|
|
|
|
tools:showIn="@layout/linked_id_view_fragment">
|
2015-03-05 01:58:36 +01:00
|
|
|
|
|
|
|
|
<ImageView
|
2015-03-05 13:13:43 +01:00
|
|
|
android:layout_width="32dp"
|
2015-03-12 20:46:50 +01:00
|
|
|
android:layout_height="32dp"
|
2015-03-05 01:58:36 +01:00
|
|
|
android:id="@+id/linked_id_type_icon"
|
|
|
|
|
android:layout_marginLeft="14dp"
|
|
|
|
|
android:layout_marginStart="14dp"
|
2015-03-26 13:53:43 +01:00
|
|
|
tools:src="@drawable/linked_dns"
|
2015-03-05 18:05:48 +01:00
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
|
android:scaleType="fitCenter" />
|
2015-03-05 01:58:36 +01:00
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
|
android:layout_width="0dip"
|
|
|
|
|
android:layout_marginLeft="8dp"
|
|
|
|
|
android:layout_marginTop="4dp"
|
|
|
|
|
android:layout_marginBottom="4dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_weight="1">
|
|
|
|
|
|
|
|
|
|
<TextView
|
2015-03-05 13:13:43 +01:00
|
|
|
android:id="@+id/linked_id_title"
|
2015-03-05 01:58:36 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
2015-03-26 13:53:43 +01:00
|
|
|
tools:text="Title"
|
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
|
|
/>
|
2015-03-05 01:58:36 +01:00
|
|
|
|
|
|
|
|
<TextView
|
2015-03-05 13:13:43 +01:00
|
|
|
android:id="@+id/linked_id_comment"
|
2015-03-05 01:58:36 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:textColor="@color/tertiary_text_light"
|
2015-03-26 13:53:43 +01:00
|
|
|
tools:text="comment"
|
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
|
/>
|
2015-03-05 01:58:36 +01:00
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
2015-03-15 21:41:04 +01:00
|
|
|
<ViewAnimator
|
|
|
|
|
android:id="@+id/linked_id_certified"
|
2015-03-05 01:58:36 +01:00
|
|
|
android:layout_width="22dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
2015-03-05 18:05:48 +01:00
|
|
|
android:layout_marginLeft="16dp"
|
|
|
|
|
android:layout_marginRight="16dp"
|
2015-03-15 21:41:04 +01:00
|
|
|
android:outAnimation="@anim/fade_out_down"
|
|
|
|
|
android:inAnimation="@anim/fade_in_up"
|
2015-03-05 01:58:36 +01:00
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
|
|
<ImageView
|
2015-03-15 21:41:04 +01:00
|
|
|
android:id="@+id/linked_id_certified_icon"
|
2015-03-05 01:58:36 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
2015-03-05 12:10:51 +01:00
|
|
|
android:src="@drawable/status_signature_unknown_cutout_24dp"
|
2015-03-05 01:58:36 +01:00
|
|
|
android:layout_gravity="center_horizontal" />
|
|
|
|
|
|
2015-03-15 21:41:04 +01:00
|
|
|
<Space
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_width="wrap_content" />
|
|
|
|
|
|
|
|
|
|
</ViewAnimator>
|
2015-03-05 01:58:36 +01:00
|
|
|
|
|
|
|
|
</LinearLayout>
|