2020-04-07 09:36:28 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<layout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
android:layout_width="match_parent"
|
2020-04-13 10:02:34 +00:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:background="?color_background_secondary">
|
2020-04-07 09:36:28 +00:00
|
|
|
|
2020-04-07 14:17:29 +00:00
|
|
|
<android.support.design.widget.AppBarLayout
|
2020-04-14 17:06:39 +00:00
|
|
|
android:id="@+id/app_bar_layout"
|
2020-04-07 09:36:28 +00:00
|
|
|
android:layout_width="match_parent"
|
2020-04-14 17:35:26 +00:00
|
|
|
android:layout_height="wrap_content">
|
2020-04-07 14:17:29 +00:00
|
|
|
|
2020-04-14 17:35:26 +00:00
|
|
|
<android.support.v7.widget.Toolbar
|
|
|
|
android:id="@+id/toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?attr/actionBarSize"
|
|
|
|
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
|
|
|
|
app:popupTheme="?popupOverlayStyle" />
|
2020-04-07 14:17:29 +00:00
|
|
|
|
2020-04-07 09:36:28 +00:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/with"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2020-04-07 14:17:29 +00:00
|
|
|
android:layout_below="@id/status"
|
2020-04-14 17:35:26 +00:00
|
|
|
android:layout_marginLeft="16dp"
|
|
|
|
android:layout_marginTop="0dp"
|
|
|
|
android:layout_marginRight="16dp"
|
|
|
|
android:layout_marginBottom="32dp"
|
2020-04-07 09:36:28 +00:00
|
|
|
android:textAppearance="@style/TextAppearance.Conversations.Display2"
|
2020-04-07 14:17:29 +00:00
|
|
|
android:textColor="@color/white"
|
|
|
|
tools:text="Juliet Capulet" />
|
|
|
|
|
|
|
|
</android.support.design.widget.AppBarLayout>
|
2020-04-07 09:36:28 +00:00
|
|
|
|
2020-04-14 19:06:26 +00:00
|
|
|
<org.webrtc.SurfaceViewRenderer
|
|
|
|
android:id="@+id/remote_video"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="100dp"
|
|
|
|
android:layout_below="@+id/app_bar_layout"
|
|
|
|
android:layout_alignParentStart="true"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
android:visibility="visible" />
|
2020-04-14 17:35:26 +00:00
|
|
|
|
2020-04-14 17:06:39 +00:00
|
|
|
<org.webrtc.SurfaceViewRenderer
|
|
|
|
android:id="@+id/local_video"
|
2020-04-14 19:06:26 +00:00
|
|
|
android:layout_width="80dp"
|
|
|
|
android:layout_height="128dp"
|
2020-04-14 17:06:39 +00:00
|
|
|
android:layout_below="@+id/app_bar_layout"
|
2020-04-14 17:35:26 +00:00
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
android:layout_alignParentRight="true"
|
2020-04-14 19:06:26 +00:00
|
|
|
android:layout_marginTop="24dp"
|
|
|
|
android:layout_marginEnd="24dp"
|
|
|
|
android:layout_marginRight="24dp"
|
|
|
|
android:visibility="visible" />
|
2020-04-14 17:06:39 +00:00
|
|
|
|
2020-04-07 09:36:28 +00:00
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
android:layout_width="288dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
android:layout_marginBottom="24dp">
|
|
|
|
|
|
|
|
<android.support.design.widget.FloatingActionButton
|
|
|
|
android:id="@+id/reject_call"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentStart="true"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_centerVertical="true"
|
2020-04-07 14:17:29 +00:00
|
|
|
android:layout_margin="16dp"
|
2020-04-07 09:36:28 +00:00
|
|
|
android:src="@drawable/ic_call_end_white_48dp"
|
2020-04-07 14:17:29 +00:00
|
|
|
android:visibility="gone"
|
2020-04-07 09:36:28 +00:00
|
|
|
app:backgroundTint="@color/red700"
|
|
|
|
app:elevation="4dp"
|
|
|
|
app:fabCustomSize="72dp"
|
2020-04-07 12:22:12 +00:00
|
|
|
app:maxImageSize="36dp"
|
2020-04-07 14:17:29 +00:00
|
|
|
tools:visibility="visible" />
|
2020-04-07 12:22:12 +00:00
|
|
|
|
2020-04-13 10:02:34 +00:00
|
|
|
<android.support.design.widget.FloatingActionButton
|
|
|
|
android:id="@+id/in_call_action_left"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_margin="16dp"
|
|
|
|
android:layout_toStartOf="@+id/end_call"
|
|
|
|
android:layout_toLeftOf="@+id/end_call"
|
|
|
|
android:visibility="gone"
|
|
|
|
app:backgroundTint="?color_background_primary"
|
|
|
|
app:elevation="4dp"
|
|
|
|
app:fabSize="mini"
|
|
|
|
app:tint="?attr/icon_tint" />
|
|
|
|
|
2020-04-07 12:22:12 +00:00
|
|
|
<android.support.design.widget.FloatingActionButton
|
|
|
|
android:id="@+id/end_call"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerInParent="true"
|
2020-04-07 14:17:29 +00:00
|
|
|
android:layout_margin="16dp"
|
2020-04-07 12:22:12 +00:00
|
|
|
android:src="@drawable/ic_call_end_white_48dp"
|
2020-04-13 10:02:34 +00:00
|
|
|
android:visibility="visible"
|
2020-04-07 12:22:12 +00:00
|
|
|
app:backgroundTint="@color/red700"
|
|
|
|
app:elevation="4dp"
|
|
|
|
app:fabCustomSize="72dp"
|
2020-04-07 14:17:29 +00:00
|
|
|
app:maxImageSize="36dp" />
|
2020-04-07 09:36:28 +00:00
|
|
|
|
2020-04-13 10:02:34 +00:00
|
|
|
<android.support.design.widget.FloatingActionButton
|
|
|
|
android:id="@+id/in_call_action_right"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_margin="16dp"
|
|
|
|
android:layout_toEndOf="@+id/end_call"
|
|
|
|
android:layout_toRightOf="@+id/end_call"
|
|
|
|
android:visibility="gone"
|
|
|
|
app:backgroundTint="?color_background_primary"
|
|
|
|
app:elevation="4dp"
|
|
|
|
app:fabSize="mini"
|
|
|
|
app:tint="?attr/icon_tint" />
|
|
|
|
|
|
|
|
|
2020-04-07 09:36:28 +00:00
|
|
|
<android.support.design.widget.FloatingActionButton
|
|
|
|
android:id="@+id/accept_call"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_centerVertical="true"
|
2020-04-07 14:17:29 +00:00
|
|
|
android:layout_margin="16dp"
|
2020-04-07 09:36:28 +00:00
|
|
|
android:src="@drawable/ic_call_white_48dp"
|
2020-04-07 14:17:29 +00:00
|
|
|
android:visibility="gone"
|
2020-04-07 09:36:28 +00:00
|
|
|
app:backgroundTint="@color/green700"
|
|
|
|
app:elevation="4dp"
|
|
|
|
app:fabCustomSize="72dp"
|
2020-04-07 12:22:12 +00:00
|
|
|
app:maxImageSize="36dp"
|
2020-04-07 14:17:29 +00:00
|
|
|
tools:visibility="visible" />
|
2020-04-07 09:36:28 +00:00
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
</layout>
|