session-android/app/src/main/res/layout/activity_webrtc.xml

186 lines
8.1 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
2021-09-02 09:39:02 +02:00
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:keepScreenOn="true"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:tools="http://schemas.android.com/tools">
<FrameLayout
2021-11-12 07:07:39 +01:00
android:id="@+id/remote_parent"
2021-08-20 01:14:54 +02:00
android:layout_width="match_parent"
android:layout_height="match_parent">
2021-11-12 07:07:39 +01:00
2021-11-10 01:57:03 +01:00
<FrameLayout
android:id="@+id/remote_renderer"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_constraintBottom_toBottomOf="parent"
2021-11-12 07:07:39 +01:00
app:layout_constraintTop_toTopOf="parent" />
</FrameLayout>
2021-11-12 07:07:39 +01:00
<com.makeramen.roundedimageview.RoundedImageView
android:id="@+id/remote_recipient"
app:layout_constraintStart_toStartOf="@id/remote_parent"
app:layout_constraintEnd_toEndOf="@id/remote_parent"
app:layout_constraintTop_toTopOf="@id/remote_parent"
app:layout_constraintBottom_toBottomOf="@id/remote_parent"
android:layout_width="@dimen/extra_large_profile_picture_size"
android:layout_height="@dimen/extra_large_profile_picture_size"/>
<com.github.ybq.android.spinkit.SpinKitView
android:id="@+id/remote_loading_view"
style="@style/SpinKitView.ThreeBounce"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:foregroundGravity="center"
android:visibility="gone"
app:SpinKit_Color="@color/text"
app:layout_constraintEnd_toEndOf="@+id/remote_recipient"
app:layout_constraintStart_toStartOf="@+id/remote_recipient"
app:layout_constraintTop_toBottomOf="@id/remote_recipient"
tools:visibility="visible" />
<FrameLayout
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintDimensionRatio="h,9:16"
android:layout_margin="@dimen/large_spacing"
app:layout_constraintWidth_percent="0.2"
2021-08-20 01:14:54 +02:00
android:layout_height="0dp"
android:layout_width="0dp">
2021-11-10 01:57:03 +01:00
<FrameLayout
android:elevation="8dp"
android:id="@+id/local_renderer"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
<com.github.ybq.android.spinkit.SpinKitView
android:id="@+id/local_loading_view"
style="@style/SpinKitView.Large.ThreeBounce"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:SpinKit_Color="@color/text"
android:layout_gravity="center"
tools:visibility="visible"
android:visibility="gone" />
</FrameLayout>
2021-09-02 09:39:02 +02:00
<ImageView
2021-11-10 01:57:03 +01:00
android:id="@+id/endCallButton"
2021-09-02 09:39:02 +02:00
android:background="@drawable/circle_tintable"
android:src="@drawable/ic_baseline_call_end_24"
2021-11-12 07:07:39 +01:00
android:padding="@dimen/medium_spacing"
2021-09-02 09:39:02 +02:00
app:tint="@color/core_white"
android:backgroundTint="@color/destructive"
android:layout_width="@dimen/large_button_height"
android:layout_height="@dimen/large_button_height"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
android:layout_marginBottom="@dimen/large_spacing"
/>
<ImageView
2021-11-10 01:57:03 +01:00
android:id="@+id/switchCameraButton"
2021-09-02 09:39:02 +02:00
android:background="@drawable/circle_tintable"
android:src="@drawable/ic_baseline_flip_camera_android_24"
2021-11-12 07:07:39 +01:00
android:padding="@dimen/medium_spacing"
app:tint="@color/call_action_foreground"
android:backgroundTint="@color/call_action_button"
2021-09-02 09:39:02 +02:00
android:layout_width="@dimen/large_button_height"
android:layout_height="@dimen/large_button_height"
2021-11-12 07:07:39 +01:00
app:layout_constraintBottom_toTopOf="@+id/endCallButton"
2021-09-02 09:39:02 +02:00
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
android:layout_marginBottom="@dimen/large_spacing"
app:layout_constraintHorizontal_bias="0.1"
2021-09-02 09:39:02 +02:00
/>
<ImageView
2021-11-10 01:57:03 +01:00
android:id="@+id/enableCameraButton"
android:background="@drawable/circle_tintable"
android:src="@drawable/ic_baseline_videocam_off_24"
2021-11-12 07:07:39 +01:00
android:padding="@dimen/medium_spacing"
app:tint="@color/call_action_foreground"
android:backgroundTint="@color/call_action_button"
2021-11-10 01:57:03 +01:00
android:layout_width="@dimen/large_button_height"
android:layout_height="@dimen/large_button_height"
2021-11-12 07:07:39 +01:00
app:layout_constraintBottom_toTopOf="@+id/endCallButton"
app:layout_constraintStart_toEndOf="@id/switchCameraButton"
2021-11-12 07:07:39 +01:00
app:layout_constraintEnd_toStartOf="@id/microphoneButton"
2021-11-10 01:57:03 +01:00
android:layout_marginBottom="@dimen/large_spacing"
/>
<ImageView
2021-11-12 07:07:39 +01:00
android:id="@+id/microphoneButton"
android:layout_width="@dimen/large_button_height"
android:layout_height="@dimen/large_button_height"
2021-11-12 07:07:39 +01:00
android:padding="@dimen/medium_spacing"
android:src="@drawable/ic_microphone"
app:tint="@color/call_action_foreground"
android:backgroundTint="@color/call_action_button"
android:layout_marginBottom="@dimen/large_spacing"
2021-11-12 07:07:39 +01:00
app:layout_constraintBottom_toTopOf="@+id/endCallButton"
android:background="@drawable/circle_tintable"
app:layout_constraintEnd_toStartOf="@id/speakerPhoneButton"
2021-11-12 07:07:39 +01:00
app:layout_constraintStart_toEndOf="@id/enableCameraButton"/>
2021-11-10 01:57:03 +01:00
<ImageView
android:id="@+id/speakerPhoneButton"
2021-09-02 09:39:02 +02:00
android:background="@drawable/circle_tintable"
android:src="@drawable/ic_baseline_volume_mute_24"
2021-11-12 07:07:39 +01:00
android:padding="@dimen/medium_spacing"
app:tint="@color/call_action_foreground"
android:backgroundTint="@color/call_action_button"
2021-09-02 09:39:02 +02:00
android:layout_width="@dimen/large_button_height"
android:layout_height="@dimen/large_button_height"
2021-11-12 07:07:39 +01:00
app:layout_constraintBottom_toTopOf="@+id/endCallButton"
2021-09-02 09:39:02 +02:00
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
android:layout_marginBottom="@dimen/large_spacing"
app:layout_constraintHorizontal_bias="0.9"
2021-09-02 09:39:02 +02:00
/>
2021-11-12 07:07:39 +01:00
<TextView
android:textAllCaps="true"
style="@style/Widget.Session.Button.Common.ProminentOutline"
android:text="@string/accept_call"
android:layout_marginBottom="@dimen/large_spacing"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintHorizontal_bias="0.85"
android:padding="@dimen/medium_spacing"
android:gravity="center"
android:id="@+id/acceptCallButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<TextView
android:textAllCaps="true"
style="@style/Widget.Session.Button.Common.UnimportantDestructive"
android:text="@string/decline_call"
android:layout_marginBottom="@dimen/large_spacing"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintHorizontal_bias="0.15"
android:padding="@dimen/medium_spacing"
android:id="@+id/declineCallButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<androidx.constraintlayout.widget.Group
android:id="@+id/controlGroup"
android:layout_width="0dp"
android:layout_height="0dp"
app:constraint_referenced_ids="enableCameraButton,endCallButton,switchCameraButton,speakerPhoneButton,microphoneButton"
/>
<androidx.constraintlayout.widget.Group
android:layout_width="0dp"
android:layout_height="0dp"
android:id="@+id/incomingControlGroup"
app:constraint_referenced_ids="acceptCallButton,declineCallButton"/>
2021-09-02 09:39:02 +02:00
</androidx.constraintlayout.widget.ConstraintLayout>