That fuck shit the fascists are using
1<?xml version="1.0" encoding="utf-8"?>
2<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 xmlns:tools="http://schemas.android.com/tools"
4 tools:viewBindingIgnore="true"
5 xmlns:app="http://schemas.android.com/apk/res-auto"
6 android:layout_width="match_parent"
7 android:layout_height="match_parent"
8 android:background="@color/signal_background_primary">
9
10 <FrameLayout
11 android:id="@+id/video_container"
12 android:layout_width="0dp"
13 android:layout_height="0dp"
14 app:layout_constraintBottom_toBottomOf="parent"
15 app:layout_constraintEnd_toEndOf="parent"
16 app:layout_constraintStart_toStartOf="parent"
17 app:layout_constraintTop_toTopOf="parent" />
18
19 <androidx.recyclerview.widget.RecyclerView
20 android:id="@+id/message_details_list"
21 android:layout_width="0dp"
22 android:layout_height="0dp"
23 app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
24 app:layout_constraintBottom_toBottomOf="parent"
25 app:layout_constraintEnd_toEndOf="parent"
26 app:layout_constraintStart_toStartOf="parent"
27 app:layout_constraintTop_toTopOf="parent" />
28
29 <View
30 android:id="@+id/toolbar_shadow"
31 android:layout_width="match_parent"
32 android:layout_height="5dp"
33 android:alpha="0"
34 android:background="@drawable/toolbar_shadow"
35 app:layout_constraintEnd_toEndOf="parent"
36 app:layout_constraintStart_toStartOf="parent"
37 app:layout_constraintTop_toTopOf="parent" />
38
39</androidx.constraintlayout.widget.ConstraintLayout>