61 lines
2.1 KiB
XML
61 lines
2.1 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<LinearLayout
|
||
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:minHeight="?attr/listPreferredItemHeight"
|
||
|
|
android:gravity="center_vertical"
|
||
|
|
android:maxLines="1"
|
||
|
|
android:orientation="horizontal">
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="0dip"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_gravity="center_vertical"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:focusable="true"
|
||
|
|
android:orientation="vertical"
|
||
|
|
android:paddingLeft="8dp"
|
||
|
|
android:paddingRight="4dp"
|
||
|
|
android:paddingTop="4dp"
|
||
|
|
android:paddingBottom="4dp">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/key_list_item_name"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
tools:text="@string/label_main_user_id"
|
||
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/key_list_item_email"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:maxLines="1"
|
||
|
|
android:ellipsize="end"
|
||
|
|
tools:text="user@example.com"
|
||
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/key_list_item_creation"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:maxLines="1"
|
||
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
||
|
|
tools:text="Created on 10/10/2010 10:00" />
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
<ImageView
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:padding="8dp"
|
||
|
|
android:id="@+id/button_transfer"
|
||
|
|
android:src="@drawable/ic_play_arrow_white_24dp"
|
||
|
|
android:tint="@color/md_black_1000"
|
||
|
|
android:background="?selectableItemBackground"
|
||
|
|
/>
|
||
|
|
|
||
|
|
</LinearLayout>
|