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"
|
2020-06-16 18:12:14 -04:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2021-08-30 17:52:46 -03:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2020-06-16 18:12:14 -04:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2021-08-30 17:52:46 -03:00
|
|
|
android:background="@color/signal_background_primary">
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.Toolbar
|
|
|
|
android:id="@+id/toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="56dp"
|
|
|
|
android:theme="?attr/settingsToolbarStyle"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
app:navigationIcon="@drawable/ic_arrow_left_24"
|
|
|
|
app:titleTextAppearance="@style/Signal.Text.Title"
|
|
|
|
app:navigationContentDescription="@string/DSLSettingsToolbar__navigate_up"
|
|
|
|
tools:title="Message Details" />
|
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"
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/toolbar" />
|
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"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/toolbar"
|
2021-04-20 15:12:35 -03:00
|
|
|
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager" />
|
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"
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/toolbar" />
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|