mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-18 11:58:09 +00:00
103 lines
3.1 KiB
XML
103 lines
3.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/dialer"
|
|
android:layout_width="300dp"
|
|
android:layout_height="460dp"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_marginBottom="50dp"
|
|
android:visibility="gone">
|
|
</RelativeLayout>
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/address_bar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="50dp"
|
|
android:layout_alignParentTop="true"
|
|
android:background="@color/colorG">
|
|
|
|
<org.linphone.ui.EraseButton
|
|
android:id="@+id/erase"
|
|
android:layout_width="40dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginLeft="10dp"
|
|
android:layout_marginRight="10dp"
|
|
android:contentDescription="@string/content_description_backspace"
|
|
android:src="@drawable/backspace"/>
|
|
|
|
<org.linphone.ui.AddressText
|
|
android:id="@+id/address"
|
|
style="@style/font5"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_centerVertical="true"
|
|
android:layout_toLeftOf="@id/erase"
|
|
android:background="@color/transparent"
|
|
android:backgroundTint="@color/transparent"
|
|
android:ellipsize="start"
|
|
android:hint="@string/address_bar_hint"
|
|
android:inputType="textEmailAddress"
|
|
android:paddingLeft="20dp"
|
|
android:paddingRight="5dp"
|
|
android:textColorHint="@color/colorB"/>
|
|
|
|
</RelativeLayout>
|
|
|
|
<org.linphone.ui.Numpad
|
|
android:id="@+id/numpad"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_above="@id/controls"
|
|
android:layout_below="@id/address_bar"
|
|
android:layout_centerInParent="true"
|
|
android:background="@color/colorB"
|
|
android:padding="10dp"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/logodialer"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"
|
|
android:padding="50dp"
|
|
android:src="@drawable/logo_secure_phone_big"
|
|
android:visibility="gone"/>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/controls"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="50dp"
|
|
android:layout_alignParentBottom="true"
|
|
>
|
|
|
|
<ImageView
|
|
android:id="@+id/add_contact"
|
|
android:layout_width="200dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_weight="1"
|
|
android:adjustViewBounds="true"
|
|
android:background="#595959"
|
|
android:contentDescription="@string/content_description_add_contact"
|
|
android:focusable="true"
|
|
android:src="@drawable/back_white"
|
|
android:visibility="gone"/>
|
|
|
|
<org.linphone.ui.CallButton
|
|
android:id="@+id/call"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"
|
|
android:adjustViewBounds="false"
|
|
android:background="@color/colorH"
|
|
android:src="@drawable/call_start"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</RelativeLayout>
|