mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 11:28:06 +00:00
92 lines
2.7 KiB
XML
92 lines
2.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:background="@drawable/list_selector"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="60dp"
|
|
android:padding="5dp"
|
|
android:gravity="center_vertical"
|
|
android:orientation="vertical">
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/avatar_layout"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center">
|
|
|
|
<ImageView
|
|
android:id="@+id/contact_picture"
|
|
android:src="@drawable/avatar"
|
|
android:contentDescription="@string/content_description_contact_picture"
|
|
android:layout_width="35dp"
|
|
android:layout_height="35dp"
|
|
android:adjustViewBounds="true"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_marginLeft="5dp"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/mask"
|
|
android:src="@drawable/avatar_mask"
|
|
android:layout_width="35dp"
|
|
android:layout_height="35dp"
|
|
android:adjustViewBounds="true"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_marginLeft="5dp"/>
|
|
|
|
</RelativeLayout>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/layout"
|
|
android:background="@drawable/list_selector"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_vertical"
|
|
android:orientation="vertical"
|
|
android:layout_toLeftOf="@+id/contact_linphone"
|
|
android:layout_toRightOf="@id/avatar_layout"
|
|
android:layout_marginLeft="5dp"
|
|
android:layout_alignParentTop="true"
|
|
android:layout_alignParentBottom="true">
|
|
|
|
<TextView
|
|
android:id="@+id/contact_name"
|
|
style="@style/font6"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerVertical="true"
|
|
android:gravity="top|left"
|
|
android:lines="1"/>
|
|
|
|
<TextView
|
|
android:id="@+id/contact_address"
|
|
style="@style/font2"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerVertical="true"
|
|
android:ellipsize="end"
|
|
android:gravity="bottom|left"
|
|
android:lines="1"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<ImageView
|
|
android:id="@id/contact_linphone"
|
|
android:layout_width="30dp"
|
|
android:layout_height="30dp"
|
|
android:layout_gravity="right"
|
|
android:paddingRight="10dp"
|
|
android:src="@drawable/linphone_user"
|
|
android:layout_centerVertical="true"
|
|
android:layout_toLeftOf="@+id/contact_is_select"
|
|
android:layout_toStartOf="@+id/contact_is_select"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/contact_is_select"
|
|
android:layout_width="40dp"
|
|
android:layout_height="40dp"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_centerInParent="true"
|
|
android:layout_gravity="right"
|
|
android:visibility="invisible"
|
|
android:paddingRight="20dp"
|
|
android:src="@drawable/check_selected"/>
|
|
</RelativeLayout>
|