mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-18 11:58:09 +00:00
131 lines
No EOL
5 KiB
XML
131 lines
No EOL
5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/colorH">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/colorH"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="50dp"
|
|
android:background="@color/colorH"
|
|
android:orientation="horizontal">
|
|
|
|
<ImageView
|
|
android:id="@+id/back"
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="0.2"
|
|
android:background="@drawable/toolbar_button"
|
|
android:contentDescription="@string/content_description_back"
|
|
android:src="@drawable/back"/>
|
|
|
|
<View
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="0.4"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/deleteContact"
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="0.2"
|
|
android:background="@drawable/toolbar_button"
|
|
android:contentDescription="@string/content_description_delete"
|
|
android:padding="15dp"
|
|
android:src="@drawable/delete"
|
|
android:visibility="invisible"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/editContact"
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="0.2"
|
|
android:background="@drawable/toolbar_button"
|
|
android:contentDescription="@string/content_description_edit"
|
|
android:padding="15dp"
|
|
android:src="@drawable/edit"
|
|
android:visibility="invisible"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<ScrollView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
android:orientation="vertical"
|
|
android:paddingTop="20dp">
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/avatar_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="66dp"
|
|
android:gravity="center">
|
|
|
|
<ImageView
|
|
android:id="@+id/contact_picture"
|
|
android:layout_width="100dp"
|
|
android:layout_height="100dp"
|
|
android:layout_alignParentLeft="true"
|
|
android:adjustViewBounds="true"
|
|
android:contentDescription="@string/content_description_contact_picture"
|
|
android:src="@drawable/avatar_big_secure1"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/mask"
|
|
android:layout_width="100dp"
|
|
android:layout_height="100dp"
|
|
android:layout_alignParentLeft="true"
|
|
android:adjustViewBounds="true"
|
|
android:src="@drawable/avatar_mask"/>
|
|
|
|
</RelativeLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/contact_name"
|
|
style="@style/font5"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:maxLines="1"/>
|
|
|
|
<TextView
|
|
android:id="@+id/separator_text"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="23.3dp"
|
|
android:layout_marginTop="15dp"
|
|
android:background="@color/colorN"
|
|
android:gravity="center_vertical|center_horizontal"
|
|
android:text="appel sécurisé"
|
|
android:textAllCaps="true"
|
|
android:textColor="#ffffff"
|
|
android:textSize="13.3sp"/>
|
|
|
|
<TableLayout
|
|
android:id="@+id/controls"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:padding="10dp"
|
|
android:paddingTop="10dp"
|
|
android:stretchColumns="*"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</ScrollView>
|
|
|
|
</LinearLayout>
|
|
|
|
<include
|
|
android:id="@+id/waitScreen"
|
|
layout="@layout/wait_layout"/>
|
|
|
|
</RelativeLayout> |