mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 19:38:08 +00:00
Conflicts: AndroidManifest.xml res/layout/chat_bubble_alt_incoming.xml res/layout/chat_bubble_alt_outgoing.xml res/layout/chat_bubble_incoming.xml res/layout/chat_bubble_outgoing.xml res/values/strings.xml src/org/linphone/ContactsManager.java src/org/linphone/compatibility/ApiFivePlus.java src/org/linphone/ui/BubbleChat.java
205 lines
No EOL
5.8 KiB
XML
205 lines
No EOL
5.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/colorH"
|
|
android:orientation="vertical">
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="60dp"
|
|
android:layout_gravity="bottom"
|
|
android:background="@color/colorF"
|
|
android:id="@+id/relativeLayout">
|
|
|
|
<ImageView
|
|
android:contentDescription="@string/content_description_back"
|
|
android:id="@+id/back"
|
|
android:layout_alignParentLeft="true"
|
|
android:padding="10dp"
|
|
android:src="@drawable/back"
|
|
android:gravity="center"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"/>
|
|
|
|
<ImageView
|
|
android:contentDescription="@string/content_description_valid"
|
|
android:id="@+id/ok"
|
|
android:layout_alignParentRight="true"
|
|
android:padding="10dp"
|
|
android:src="@drawable/valid"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:adjustViewBounds="true"/>
|
|
|
|
<ImageView
|
|
android:contentDescription="@string/content_description_delete"
|
|
android:id="@+id/deleteContact"
|
|
android:padding="10dp"
|
|
android:src="@drawable/delete"
|
|
android:gravity="center"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_alignParentTop="true"
|
|
android:layout_toLeftOf="@+id/ok"
|
|
android:layout_toStartOf="@+id/editContact"/>
|
|
|
|
</RelativeLayout>
|
|
|
|
<ScrollView
|
|
android:id="@+id/controlsScrollView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical" >
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingTop="20dp"
|
|
android:paddingLeft="10dp"
|
|
android:paddingRight="10dp"
|
|
android:gravity="center"
|
|
android:orientation="vertical">
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingBottom="10dp"
|
|
android:gravity="center">
|
|
|
|
<ImageView
|
|
android:id="@+id/contactPicture"
|
|
android:layout_width="120dp"
|
|
android:layout_height="120dp"
|
|
android:src="@drawable/avatar" />
|
|
</RelativeLayout>
|
|
|
|
|
|
<TextView
|
|
android:text="@string/contact_last_name"
|
|
style="@style/font13"
|
|
android:textAllCaps="true"
|
|
android:paddingTop="10dp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"/>
|
|
|
|
<EditText
|
|
android:id="@+id/contactLastName"
|
|
android:background="@drawable/resizable_textfield"
|
|
style="@style/font9"
|
|
android:textCursorDrawable="@null"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="left"
|
|
android:paddingRight="5dp"
|
|
android:inputType="textPersonName|textCapWords"
|
|
android:layout_column="0"/>
|
|
|
|
<TextView
|
|
android:text="@string/contact_first_name"
|
|
style="@style/font13"
|
|
android:textAllCaps="true"
|
|
android:paddingTop="10dp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"/>
|
|
|
|
<EditText
|
|
android:id="@+id/contactFirstName"
|
|
android:textCursorDrawable="@null"
|
|
android:background="@drawable/resizable_textfield"
|
|
style="@style/font9"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="left"
|
|
android:paddingRight="5dp"
|
|
android:inputType="textPersonName|textCapWords"
|
|
android:layout_column="1"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:padding="10dp"
|
|
android:orientation="vertical">
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<TextView
|
|
android:text="@string/sip_address"
|
|
style="@style/font13"
|
|
android:textAllCaps="true"
|
|
android:paddingTop="10dp"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/add_address_field"
|
|
android:src="@drawable/add_field_default"
|
|
android:contentDescription="@string/content_description_add"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_width="30dp"
|
|
android:layout_height="30dp"
|
|
android:paddingLeft="5dp"/>
|
|
</RelativeLayout>
|
|
|
|
<TableLayout
|
|
android:id="@+id/controls_sip_address"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingTop="20dp">
|
|
|
|
</TableLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:padding="10dp"
|
|
android:orientation="vertical">
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<TextView
|
|
android:text="@string/phone_number"
|
|
style="@style/font13"
|
|
android:textAllCaps="true"
|
|
android:paddingTop="10dp"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/add_number_field"
|
|
android:src="@drawable/add_field_default"
|
|
android:contentDescription="@string/content_description_add"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_width="30dp"
|
|
android:layout_height="30dp"
|
|
android:paddingLeft="5dp"/>
|
|
</RelativeLayout>
|
|
|
|
<TableLayout
|
|
android:id="@+id/controls_numbers"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingTop="20dp">
|
|
|
|
</TableLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</ScrollView>
|
|
|
|
</LinearLayout> |