mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-02-07 14:58:24 +00:00
56 lines
2.1 KiB
XML
56 lines
2.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/contact_picture_layout"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_vertical">
|
|
|
|
<ImageView
|
|
android:id="@+id/contact_picture_small"
|
|
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/friend_status_small"
|
|
android:visibility="visible"
|
|
android:layout_width="10dp"
|
|
android:layout_height="10dp"
|
|
android:layout_alignBottom="@+id/contact_picture_small"
|
|
android:layout_alignRight="@+id/contact_picture_small"
|
|
android:adjustViewBounds="true"
|
|
android:layout_marginRight="2dp"
|
|
android:layout_marginBottom="5dp"
|
|
android:scaleType="centerInside"
|
|
android:src="@drawable/presence_unregistered" />
|
|
|
|
<ImageView
|
|
android:id="@+id/contact_picture_big"
|
|
android:visibility="gone"
|
|
android:src="@drawable/avatar"
|
|
android:contentDescription="@string/content_description_contact_picture"
|
|
android:layout_width="80dp"
|
|
android:layout_height="80dp"
|
|
android:adjustViewBounds="true"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_marginLeft="5dp"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/friend_status_big"
|
|
android:visibility="gone"
|
|
android:layout_width="25dp"
|
|
android:layout_height="25dp"
|
|
android:layout_alignBottom="@+id/contact_picture_big"
|
|
android:layout_alignRight="@+id/contact_picture_big"
|
|
android:adjustViewBounds="true"
|
|
android:layout_marginRight="7dp"
|
|
android:layout_marginBottom="7dp"
|
|
android:scaleType="centerInside"
|
|
android:src="@drawable/presence_unregistered" />
|
|
|
|
</RelativeLayout>
|