2012-07-19 14:22:03 -07:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
2020-08-13 15:37:15 -03:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="match_parent">
|
2017-01-25 16:38:36 -08:00
|
|
|
|
2021-10-06 10:02:17 -03:00
|
|
|
<View
|
|
|
|
android:id="@+id/reactions_shade"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:background="@color/reactions_screen_shade_color"
|
|
|
|
app:layout_constraintTop_toBottomOf="@android:id/list"
|
2021-10-25 13:39:01 -03:00
|
|
|
android:visibility="invisible" />
|
2021-10-06 10:02:17 -03:00
|
|
|
|
2021-04-20 15:12:35 -03:00
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/video_container"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
app:layout_constraintBottom_toBottomOf="@android:id/list"
|
|
|
|
app:layout_constraintEnd_toEndOf="@android:id/list"
|
|
|
|
app:layout_constraintStart_toStartOf="@android:id/list"
|
|
|
|
app:layout_constraintTop_toTopOf="@android:id/list" />
|
|
|
|
|
2021-08-11 13:18:38 -03:00
|
|
|
<org.thoughtcrime.securesms.conversation.mutiselect.MultiselectRecyclerView
|
2020-08-13 15:37:15 -03:00
|
|
|
android:id="@android:id/list"
|
|
|
|
android:layout_width="match_parent"
|
2021-10-22 23:35:51 -03:00
|
|
|
android:layout_height="wrap_content"
|
2020-11-10 10:20:54 -05:00
|
|
|
android:cacheColorHint="@color/signal_background_primary"
|
2020-08-13 15:37:15 -03:00
|
|
|
android:clipChildren="false"
|
|
|
|
android:clipToPadding="false"
|
|
|
|
android:paddingBottom="2dp"
|
2021-10-22 23:35:51 -03:00
|
|
|
android:scrollbars="vertical"
|
|
|
|
android:overScrollMode="ifContentScrolls"
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
2020-08-13 15:37:15 -03:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/scroll_date_header"
|
2020-10-23 13:29:29 -04:00
|
|
|
style="@style/Signal.Text.Preview"
|
2020-08-13 15:37:15 -03:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="8dp"
|
2020-11-10 10:20:54 -05:00
|
|
|
android:background="@drawable/sticky_date_header_background"
|
2020-08-13 15:37:15 -03:00
|
|
|
android:elevation="9dp"
|
|
|
|
android:gravity="center"
|
|
|
|
android:paddingStart="12dp"
|
|
|
|
android:paddingTop="4dp"
|
|
|
|
android:paddingEnd="12dp"
|
|
|
|
android:paddingBottom="4dp"
|
2020-11-10 10:20:54 -05:00
|
|
|
android:textColor="@color/signal_text_secondary"
|
2020-08-13 15:37:15 -03:00
|
|
|
android:visibility="gone"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
tools:text="March 1, 2015" />
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:id="@+id/compose_divider"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="2dp"
|
|
|
|
android:alpha="1"
|
|
|
|
android:background="@drawable/compose_divider_background"
|
|
|
|
android:visibility="invisible"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent" />
|
|
|
|
|
|
|
|
<org.thoughtcrime.securesms.components.ConversationScrollToView
|
|
|
|
android:id="@+id/scroll_to_mention"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginEnd="10dp"
|
|
|
|
android:layout_marginBottom="12dp"
|
|
|
|
android:visibility="invisible"
|
|
|
|
app:cstv_scroll_button_src="@drawable/ic_at_24"
|
|
|
|
app:layout_constraintBottom_toTopOf="@id/scroll_to_bottom"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_goneMarginBottom="20dp" />
|
|
|
|
|
|
|
|
<org.thoughtcrime.securesms.components.ConversationScrollToView
|
|
|
|
android:id="@+id/scroll_to_bottom"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginEnd="10dp"
|
|
|
|
android:layout_marginBottom="16dp"
|
|
|
|
android:visibility="invisible"
|
|
|
|
app:cstv_scroll_button_src="@drawable/ic_chevron_down_20"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent" />
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|