mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-19 20:48:08 +00:00
122 lines
No EOL
3.7 KiB
XML
122 lines
No EOL
3.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:gravity="bottom|center_horizontal">
|
|
|
|
<org.linphone.ui.CameraView
|
|
android:id="@+id/video_background"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:layout_weight="1" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal|bottom"
|
|
android:orientation="vertical" >
|
|
|
|
<LinearLayout
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="fill_parent"
|
|
android:id="@+id/Addresslayout">
|
|
|
|
<org.linphone.ui.AddressText
|
|
android:id="@+id/SipUri"
|
|
android:layout_height="wrap_content"
|
|
android:hint="sip:"
|
|
android:layout_width="fill_parent"
|
|
android:lines="1"
|
|
android:singleLine="true"
|
|
android:layout_weight="0.2"
|
|
android:editable="@bool/allow_edit_in_dialer"/>
|
|
|
|
<org.linphone.ui.EraseButton
|
|
android:layout_height="wrap_content"
|
|
android:id="@+id/Erase"
|
|
style="@style/DialerDigit"
|
|
android:layout_width="fill_parent"
|
|
android:layout_weight="0.8"
|
|
android:text="<"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="fill_parent"
|
|
android:orientation="horizontal">
|
|
|
|
<org.linphone.ui.Numpad
|
|
android:id="@+id/Dialer"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:layout_weight="0.5" />
|
|
|
|
<LinearLayout
|
|
android:layout_height="fill_parent"
|
|
android:layout_width="fill_parent"
|
|
android:layout_weight="0.5"
|
|
android:layout_marginLeft="40dp"
|
|
android:orientation="vertical">
|
|
|
|
<org.linphone.ui.CallButton
|
|
android:id="@+id/Call"
|
|
android:layout_height="fill_parent"
|
|
android:layout_width="fill_parent"
|
|
android:layout_weight="3"
|
|
android:background="@drawable/clavier_bg"
|
|
android:src="@drawable/startcall_green" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/InCallControls"
|
|
android:layout_height="fill_parent"
|
|
android:layout_width="fill_parent"
|
|
android:visibility="gone"
|
|
android:layout_weight="3" >
|
|
|
|
<Button
|
|
android:id="@+id/AddCall"
|
|
style="@style/DialerDigit"
|
|
android:layout_height="fill_parent"
|
|
android:layout_width="fill_parent"
|
|
android:layout_weight="1"
|
|
android:text="@string/AddCallButtonText" />
|
|
|
|
<Button
|
|
android:id="@+id/Back"
|
|
style="@style/DialerDigit"
|
|
android:layout_height="fill_parent"
|
|
android:layout_width="fill_parent"
|
|
android:layout_weight="1"
|
|
android:text="@string/CancelButtonText" />
|
|
|
|
</LinearLayout>
|
|
|
|
<Button
|
|
android:id="@+id/switch_camera"
|
|
style="@style/DialerDigit"
|
|
android:layout_height="fill_parent"
|
|
android:layout_width="fill_parent"
|
|
android:layout_weight="5"
|
|
android:visibility="invisible"
|
|
android:text="@string/menu_videocall_switch_camera_title" />
|
|
|
|
<EditText
|
|
android:id="@+id/status_label"
|
|
android:clickable="false"
|
|
android:focusable="false"
|
|
android:cursorVisible="false"
|
|
android:textSize="12sp"
|
|
android:background="#00000000"
|
|
android:layout_height="fill_parent"
|
|
android:layout_width="fill_parent"
|
|
android:layout_weight="7"
|
|
android:textColor="@android:color/white" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</FrameLayout> |