mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-23 18:15:22 +00:00
34 lines
1.2 KiB
XML
34 lines
1.2 KiB
XML
|
<?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"
|
||
|
android:layout_alignParentLeft="true"
|
||
|
android:layout_alignParentTop="true"
|
||
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/phone"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_alignParentLeft="true"
|
||
|
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"
|
||
|
android:layout_alignParentRight="true"
|
||
|
android:layout_centerVertical="true"
|
||
|
android:background="#00ffffff"
|
||
|
android:src="@drawable/ic_menu_remove_holo_light" />
|
||
|
|
||
|
</RelativeLayout>
|