55 lines
No EOL
2.2 KiB
XML
55 lines
No EOL
2.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.appcompat.widget.LinearLayoutCompat
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
tools:viewBindingIgnore="true"
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<View
|
|
android:id="@+id/anchor"
|
|
android:layout_width="48dp"
|
|
android:layout_height="2dp"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_marginTop="16dp"
|
|
android:background="@color/signal_icon_tint_tab_unselected"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent"/>
|
|
|
|
<TextView
|
|
android:id="@+id/title"
|
|
style="@style/Signal.Text.TitleMedium"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
app:layout_constraintTop_toBottomOf="@id/anchor"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
android:gravity="center"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_marginTop="18dp"
|
|
android:text="@string/ScheduledMessagesBottomSheet__schedules_messages"/>
|
|
|
|
<FrameLayout
|
|
android:id="@+id/video_container"
|
|
android:layout_width="0dp"
|
|
android:layout_height="0dp"
|
|
app:layout_constraintBottom_toBottomOf="@id/scheduled_list"
|
|
app:layout_constraintEnd_toEndOf="@id/scheduled_list"
|
|
app:layout_constraintStart_toStartOf="@id/scheduled_list"
|
|
app:layout_constraintTop_toTopOf="@id/scheduled_list" />
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/scheduled_list"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingBottom="24dp"
|
|
android:clipToPadding="false"
|
|
android:layout_marginTop="22dp"
|
|
app:layout_constraintTop_toBottomOf="@id/title"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent" />
|
|
|
|
</androidx.appcompat.widget.LinearLayoutCompat> |