2015-01-15 13:35:35 -08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2021-08-30 17:52:46 -03:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2022-08-09 13:29:04 -03:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
tools:viewBindingIgnore="true"
|
2020-06-16 18:12:14 -04:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2021-08-30 17:52:46 -03:00
|
|
|
android:background="@color/signal_background_primary">
|
|
|
|
|
2021-04-20 15:12:35 -03:00
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/video_container"
|
2021-09-20 10:22:43 -03:00
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2022-02-11 14:03:51 -04:00
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
2021-04-20 15:12:35 -03:00
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/message_details_list"
|
2021-08-30 17:52:46 -03:00
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="0dp"
|
2022-02-11 14:03:51 -04:00
|
|
|
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
|
2021-08-30 17:52:46 -03:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2022-02-11 14:03:51 -04:00
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
2021-08-30 17:52:46 -03:00
|
|
|
|
|
|
|
<View
|
|
|
|
android:id="@+id/toolbar_shadow"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="5dp"
|
|
|
|
android:alpha="0"
|
|
|
|
android:background="@drawable/toolbar_shadow"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2022-02-11 14:03:51 -04:00
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
2021-08-30 17:52:46 -03:00
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|