mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-18 11:58:09 +00:00
121 lines
No EOL
4.4 KiB
XML
121 lines
No EOL
4.4 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:orientation="vertical" >
|
|
|
|
<fragment android:name="org.linphone.StatusFragment"
|
|
android:id="@+id/status"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content" />
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dip"
|
|
android:layout_weight="1">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/fragmentContainer"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="horizontal" />
|
|
|
|
<ImageView
|
|
android:id="@+id/switchCamera"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_alignParentTop="true"
|
|
android:contentDescription="@string/content_description_switch_camera"
|
|
android:src="@drawable/switch_camera" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/menu"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="150dp"
|
|
android:layout_alignParentBottom="true"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="horizontal"
|
|
android:layout_weight="0.5">
|
|
|
|
<ImageView
|
|
android:contentDescription="@string/content_description_switch_video"
|
|
android:id="@+id/video"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="0.25"
|
|
android:scaleType="fitXY"
|
|
android:src="@drawable/video_off" />
|
|
|
|
<ImageView
|
|
android:contentDescription="@string/content_description_toggle_micro"
|
|
android:id="@+id/micro"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:src="@drawable/micro_on"
|
|
android:scaleType="fitXY"
|
|
android:layout_weight="0.25"/>
|
|
|
|
<ImageView
|
|
android:contentDescription="@string/content_description_toggle_speaker"
|
|
android:id="@+id/speaker"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:src="@drawable/speaker_off"
|
|
android:scaleType="fitXY"
|
|
android:layout_weight="0.25"/>
|
|
|
|
<ImageView
|
|
android:contentDescription="@string/content_description_add_call"
|
|
android:id="@+id/addCall"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:src="@drawable/add_call"
|
|
android:scaleType="fitXY"
|
|
android:layout_weight="0.25"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="horizontal"
|
|
android:layout_weight="0.5">
|
|
|
|
<ImageView
|
|
android:contentDescription="@string/content_description_pause"
|
|
android:id="@+id/pause"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:src="@drawable/pause_off"
|
|
android:scaleType="fitXY"
|
|
android:layout_weight="0.3"/>
|
|
|
|
<ImageView
|
|
android:contentDescription="@string/content_description_hang_up"
|
|
android:id="@+id/hangUp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:src="@drawable/hangup"
|
|
android:scaleType="fitXY"
|
|
android:layout_weight="0.3"/>
|
|
|
|
<ImageView
|
|
android:contentDescription="@string/content_description_numpad"
|
|
android:id="@+id/dialer"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:src="@drawable/dialer_alt"
|
|
android:scaleType="fitXY"
|
|
android:layout_weight="0.3"/>
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</RelativeLayout>
|
|
|
|
</LinearLayout> |