mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-19 20:48:08 +00:00
42 lines
No EOL
1.3 KiB
XML
42 lines
No EOL
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/avatar_layout"
|
|
android:layout_width="45dp"
|
|
android:layout_height="35dp"
|
|
android:gravity="center"
|
|
android:layout_centerHorizontal="true">
|
|
|
|
<ImageView
|
|
android:id="@+id/contact_picture"
|
|
android:src="@drawable/avatar"
|
|
android:layout_width="35dp"
|
|
android:layout_height="35dp"
|
|
android:adjustViewBounds="true"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/mask"
|
|
android:src="@drawable/avatar_mask"
|
|
android:layout_width="35dp"
|
|
android:layout_height="35dp"
|
|
android:adjustViewBounds="true"/>
|
|
|
|
<TextView
|
|
android:id="@+id/generated_avatar"
|
|
android:layout_width="35dp"
|
|
android:layout_height="35dp"
|
|
android:background="@drawable/generated_avatar_bg"
|
|
style="@style/font25"
|
|
android:gravity="center"
|
|
android:maxLines="1"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/security_level"
|
|
android:visibility="gone"
|
|
android:layout_width="20dp"
|
|
android:layout_height="20dp"
|
|
android:src="@drawable/security_alert_indicator"
|
|
android:layout_alignParentTop="true"
|
|
android:layout_alignParentRight="true"/>
|
|
|
|
</RelativeLayout> |