2014-01-19 02:17:08 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:padding="10dp">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/name"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2019-03-20 22:52:14 +00:00
|
|
|
android:layout_alignParentStart="true"
|
2014-01-19 02:17:08 +00:00
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/phone"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2019-03-20 22:52:14 +00:00
|
|
|
android:layout_alignParentStart="true"
|
2014-01-19 02:17:08 +00:00
|
|
|
android:layout_below="@id/name"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:fontFamily="sans-serif-light" />
|
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/delete"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2019-03-20 22:52:14 +00:00
|
|
|
android:layout_alignParentEnd="true"
|
2014-01-19 02:17:08 +00:00
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:background="#00ffffff"
|
|
|
|
android:src="@drawable/ic_menu_remove_holo_light" />
|
|
|
|
|
|
|
|
</RelativeLayout>
|