2023-04-14 12:46:18 -03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2023-05-17 10:28:50 -04:00
|
|
|
<org.thoughtcrime.securesms.components.InputAwareConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2023-04-14 12:46:18 -03:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
2023-05-23 11:48:42 -04:00
|
|
|
android:layout_height="match_parent"
|
2023-07-18 12:53:20 -04:00
|
|
|
android:clipChildren="false"
|
2023-05-23 11:48:42 -04:00
|
|
|
app:animateKeyboardChanges="true">
|
2023-04-14 12:46:18 -03:00
|
|
|
|
|
|
|
<include layout="@layout/system_ui_guidelines" />
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/conversation_wallpaper"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:importantForAccessibility="no"
|
|
|
|
android:scaleType="centerCrop"
|
|
|
|
app:layout_constraintEnd_toEndOf="@id/parent_end_guideline"
|
|
|
|
app:layout_constraintStart_toStartOf="@id/parent_start_guideline" />
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:id="@+id/conversation_wallpaper_dim"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:background="@color/black"
|
|
|
|
android:visibility="gone"
|
|
|
|
tools:alpha="0.2f"
|
|
|
|
tools:visibility="visible" />
|
|
|
|
|
2023-06-27 12:14:56 -04:00
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/conversation_video_container"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="0dp"
|
2023-07-31 13:10:35 -04:00
|
|
|
app:layout_constraintBottom_toBottomOf="@id/conversation_item_recycler_frame"
|
|
|
|
app:layout_constraintEnd_toEndOf="@+id/conversation_item_recycler_frame"
|
|
|
|
app:layout_constraintStart_toStartOf="@+id/conversation_item_recycler_frame"
|
|
|
|
app:layout_constraintTop_toTopOf="@+id/conversation_item_recycler_frame" />
|
2023-06-27 12:14:56 -04:00
|
|
|
|
2023-07-19 13:19:03 -04:00
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/conversation_item_recycler_frame"
|
2023-05-17 10:28:50 -04:00
|
|
|
android:layout_width="0dp"
|
2023-07-19 13:19:03 -04:00
|
|
|
android:layout_height="0dp"
|
2023-04-19 09:45:19 -03:00
|
|
|
app:layout_constraintBottom_toTopOf="@id/conversation_bottom_panel_barrier"
|
2023-05-17 10:28:50 -04:00
|
|
|
app:layout_constraintEnd_toEndOf="@id/parent_end_guideline"
|
|
|
|
app:layout_constraintStart_toStartOf="@id/parent_start_guideline"
|
2023-07-19 13:19:03 -04:00
|
|
|
app:layout_constraintTop_toTopOf="parent">
|
|
|
|
|
|
|
|
<org.thoughtcrime.securesms.conversation.mutiselect.MultiselectRecyclerView
|
|
|
|
android:id="@+id/conversation_item_recycler"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:clipChildren="false"
|
|
|
|
android:clipToPadding="false"
|
|
|
|
android:overScrollMode="ifContentScrolls"
|
|
|
|
android:scrollbars="vertical"
|
|
|
|
android:splitMotionEvents="false"
|
|
|
|
tools:itemCount="20"
|
|
|
|
tools:listitem="@layout/conversation_item_sent_text_only" />
|
|
|
|
|
|
|
|
</FrameLayout>
|
2023-04-14 12:46:18 -03:00
|
|
|
|
2023-07-13 14:03:27 -03:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/scroll_date_header"
|
|
|
|
style="@style/Signal.Text.BodySmall"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:background="@drawable/sticky_date_header_background"
|
|
|
|
android:elevation="9dp"
|
|
|
|
android:gravity="center"
|
|
|
|
android:paddingStart="12dp"
|
|
|
|
android:paddingTop="4dp"
|
|
|
|
android:paddingEnd="12dp"
|
|
|
|
android:paddingBottom="4dp"
|
|
|
|
android:textColor="@color/signal_colorOnSurfaceVariant"
|
|
|
|
android:visibility="gone"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2023-07-28 12:18:11 -04:00
|
|
|
app:layout_constraintTop_toBottomOf="@id/conversation_banner_frame"
|
2023-07-13 14:03:27 -03:00
|
|
|
tools:text="March 1, 2015"
|
|
|
|
tools:visibility="visible" />
|
|
|
|
|
2023-07-07 11:44:22 -03:00
|
|
|
<View
|
|
|
|
android:id="@+id/toolbar_background"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="@dimen/signal_m3_toolbar_height"
|
|
|
|
android:minHeight="@dimen/signal_m3_toolbar_height"
|
|
|
|
app:layout_constraintEnd_toEndOf="@id/parent_end_guideline"
|
|
|
|
app:layout_constraintStart_toStartOf="@id/parent_start_guideline"
|
|
|
|
app:layout_constraintTop_toTopOf="@id/status_bar_guideline" />
|
|
|
|
|
2023-04-14 12:46:18 -03:00
|
|
|
<org.thoughtcrime.securesms.util.views.DarkOverflowToolbar
|
|
|
|
android:id="@+id/toolbar"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="@dimen/signal_m3_toolbar_height"
|
|
|
|
android:background="@color/transparent"
|
|
|
|
android:clipChildren="false"
|
|
|
|
android:clipToPadding="false"
|
|
|
|
android:minHeight="@dimen/signal_m3_toolbar_height"
|
|
|
|
android:theme="?attr/actionBarStyle"
|
|
|
|
app:contentInsetStart="46dp"
|
|
|
|
app:contentInsetStartWithNavigation="0dp"
|
|
|
|
app:layout_constraintEnd_toEndOf="@id/parent_end_guideline"
|
|
|
|
app:layout_constraintStart_toStartOf="@id/parent_start_guideline"
|
|
|
|
app:layout_constraintTop_toTopOf="@id/status_bar_guideline">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:clipChildren="false"
|
|
|
|
android:clipToPadding="false"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<include
|
|
|
|
android:id="@+id/conversation_title_view"
|
|
|
|
layout="@layout/conversation_title_view"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_weight="1" />
|
|
|
|
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
android:id="@+id/conversation_group_call_join"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:fontFamily="sans-serif-medium"
|
|
|
|
android:text="@string/ConversationActivity_join"
|
|
|
|
android:textAllCaps="false"
|
|
|
|
android:textColor="@color/core_white"
|
|
|
|
android:visibility="gone"
|
|
|
|
app:backgroundTint="@color/core_ultramarine"
|
|
|
|
app:cornerRadius="@dimen/material_button_full_round_corner_radius"
|
|
|
|
app:icon="@drawable/ic_video_solid_18"
|
|
|
|
app:iconGravity="textStart"
|
|
|
|
app:iconTint="@color/core_white"
|
|
|
|
tools:visibility="visible" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</org.thoughtcrime.securesms.util.views.DarkOverflowToolbar>
|
|
|
|
|
2023-07-25 16:53:07 -04:00
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/conversation_banner_frame"
|
2023-05-24 22:47:05 -04:00
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
2023-07-25 16:53:07 -04:00
|
|
|
android:clipChildren="true"
|
2023-05-24 22:47:05 -04:00
|
|
|
app:layout_constraintEnd_toEndOf="@id/parent_end_guideline"
|
|
|
|
app:layout_constraintStart_toStartOf="@id/parent_start_guideline"
|
2023-05-26 15:25:27 -04:00
|
|
|
app:layout_constraintTop_toBottomOf="@+id/toolbar">
|
|
|
|
|
2023-07-25 16:53:07 -04:00
|
|
|
<org.thoughtcrime.securesms.conversation.v2.ConversationBannerView
|
|
|
|
android:id="@+id/conversation_banner"
|
2023-07-18 12:53:20 -04:00
|
|
|
android:layout_width="match_parent"
|
2023-07-25 16:53:07 -04:00
|
|
|
android:layout_height="wrap_content">
|
2023-07-18 12:53:20 -04:00
|
|
|
|
2023-07-25 16:53:07 -04:00
|
|
|
<ViewStub
|
|
|
|
android:id="@+id/voice_note_player_stub"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:inflatedId="@+id/voice_note_player"
|
|
|
|
android:layout="@layout/voice_note_player_stub" />
|
2023-05-26 15:25:27 -04:00
|
|
|
|
2023-07-25 16:53:07 -04:00
|
|
|
<ViewStub
|
|
|
|
android:id="@+id/unverified_banner_stub"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:inflatedId="@+id/unverified_banner"
|
|
|
|
android:layout="@layout/conversation_activity_unverified_banner_stub" />
|
2023-05-26 15:25:27 -04:00
|
|
|
|
2023-07-25 16:53:07 -04:00
|
|
|
<ViewStub
|
|
|
|
android:id="@+id/reminder_stub"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:inflatedId="@+id/reminder"
|
|
|
|
android:layout="@layout/conversation_activity_reminderview_stub" />
|
|
|
|
|
|
|
|
<ViewStub
|
|
|
|
android:id="@+id/review_banner_stub"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:inflatedId="@+id/review_banner"
|
|
|
|
android:layout="@layout/review_banner_view" />
|
2023-05-26 15:25:27 -04:00
|
|
|
|
2023-07-25 16:53:07 -04:00
|
|
|
</org.thoughtcrime.securesms.conversation.v2.ConversationBannerView>
|
|
|
|
|
|
|
|
</FrameLayout>
|
2023-05-23 14:14:50 -03:00
|
|
|
|
2023-04-21 10:49:30 -03:00
|
|
|
<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_20"
|
|
|
|
app:layout_constraintBottom_toTopOf="@id/scroll_to_bottom"
|
2023-05-17 10:28:50 -04:00
|
|
|
app:layout_constraintEnd_toEndOf="@id/parent_end_guideline"
|
2023-04-21 10:49:30 -03:00
|
|
|
app:layout_goneMarginBottom="20dp"
|
|
|
|
tools:visibility="visible" />
|
|
|
|
|
|
|
|
<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_toTopOf="@id/conversation_bottom_panel_barrier"
|
2023-05-17 10:28:50 -04:00
|
|
|
app:layout_constraintEnd_toEndOf="@id/parent_end_guideline"
|
2023-04-21 10:49:30 -03:00
|
|
|
tools:visibility="visible" />
|
|
|
|
|
2023-06-28 11:43:26 -04:00
|
|
|
<androidx.fragment.app.FragmentContainerView
|
|
|
|
android:id="@+id/mention_fragment_container"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="0dp"
|
2023-06-30 14:36:40 -03:00
|
|
|
app:layout_constraintBottom_toTopOf="@id/conversation_bottom_panel_barrier"
|
2023-06-28 11:43:26 -04:00
|
|
|
app:layout_constraintEnd_toEndOf="@id/parent_end_guideline"
|
2023-06-30 14:36:40 -03:00
|
|
|
app:layout_constraintStart_toStartOf="@id/parent_start_guideline"
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/toolbar" />
|
2023-06-28 11:43:26 -04:00
|
|
|
|
2023-04-14 12:46:18 -03:00
|
|
|
<androidx.constraintlayout.widget.Barrier
|
|
|
|
android:id="@+id/conversation_bottom_panel_barrier"
|
|
|
|
android:layout_width="wrap_content"
|
2023-04-19 09:45:19 -03:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
app:barrierDirection="top"
|
2023-08-31 16:28:18 -04:00
|
|
|
app:constraint_referenced_ids="conversation_input_panel,attachment_editor_stub,conversation_disabled_input,scheduled_messages_stub,scheduled_messages,conversation_search_bottom_bar" />
|
2023-05-15 12:38:28 -04:00
|
|
|
|
|
|
|
<ViewStub
|
|
|
|
android:id="@+id/attachment_editor_stub"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
2023-08-31 16:28:18 -04:00
|
|
|
android:inflatedId="@+id/attachment_editor_stub"
|
2023-05-15 12:38:28 -04:00
|
|
|
android:layout="@layout/conversation_activity_attachment_editor_stub"
|
2023-05-17 10:28:50 -04:00
|
|
|
app:layout_constraintBottom_toTopOf="@+id/conversation_input_panel"
|
|
|
|
app:layout_constraintEnd_toEndOf="@id/parent_end_guideline"
|
|
|
|
app:layout_constraintStart_toStartOf="@id/parent_start_guideline" />
|
2023-04-14 12:46:18 -03:00
|
|
|
|
2023-06-29 14:41:00 -04:00
|
|
|
<ViewStub
|
|
|
|
android:id="@+id/scheduled_messages_stub"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
2023-08-31 16:28:18 -04:00
|
|
|
android:layout_marginBottom="8dp"
|
2023-06-29 14:41:00 -04:00
|
|
|
android:inflatedId="@+id/scheduled_messages"
|
|
|
|
android:layout="@layout/conversation_activity_scheduled_messages_stub"
|
2023-08-31 16:28:18 -04:00
|
|
|
app:layout_constraintBottom_toTopOf="@+id/attachment_editor_stub"
|
2023-06-29 14:41:00 -04:00
|
|
|
app:layout_constraintEnd_toEndOf="@id/parent_end_guideline"
|
2023-08-31 16:28:18 -04:00
|
|
|
app:layout_constraintStart_toStartOf="@id/parent_start_guideline"
|
|
|
|
app:layout_goneMarginBottom="0dp" />
|
2023-06-29 14:41:00 -04:00
|
|
|
|
2023-04-14 12:46:18 -03:00
|
|
|
<include
|
|
|
|
android:id="@+id/conversation_input_panel"
|
|
|
|
layout="@layout/conversation_input_panel"
|
2023-05-17 10:28:50 -04:00
|
|
|
android:layout_width="0dp"
|
2023-04-14 12:46:18 -03:00
|
|
|
android:layout_height="wrap_content"
|
2023-05-15 12:38:28 -04:00
|
|
|
app:layout_constraintBottom_toTopOf="@+id/conversation_input_space_left"
|
2023-05-17 10:28:50 -04:00
|
|
|
app:layout_constraintEnd_toEndOf="@id/parent_end_guideline"
|
|
|
|
app:layout_constraintStart_toStartOf="@id/parent_start_guideline" />
|
2023-05-15 12:38:28 -04:00
|
|
|
|
2023-06-13 11:37:18 -03:00
|
|
|
<include
|
|
|
|
android:id="@+id/conversation_search_bottom_bar"
|
|
|
|
layout="@layout/conversation_search_nav"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:visibility="gone"
|
|
|
|
app:layout_constraintBottom_toTopOf="@id/keyboard_guideline"
|
|
|
|
app:layout_constraintEnd_toEndOf="@id/parent_end_guideline"
|
|
|
|
app:layout_constraintStart_toStartOf="@id/parent_start_guideline" />
|
|
|
|
|
2023-05-22 20:33:31 -04:00
|
|
|
<org.thoughtcrime.securesms.conversation.v2.DisabledInputView
|
|
|
|
android:id="@+id/conversation_disabled_input"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
app:layout_constraintBottom_toTopOf="@id/keyboard_guideline"
|
|
|
|
app:layout_constraintEnd_toEndOf="@id/parent_end_guideline"
|
|
|
|
app:layout_constraintStart_toStartOf="@id/parent_start_guideline" />
|
|
|
|
|
2023-06-27 11:03:03 -04:00
|
|
|
<androidx.constraintlayout.widget.Barrier
|
|
|
|
android:id="@+id/conversation_input_panel_barrier"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
app:barrierDirection="top"
|
2023-07-24 14:29:31 -04:00
|
|
|
app:constraint_referenced_ids="emoji_search_container,keyboard_guideline,navigation_bar_guideline" />
|
2023-06-30 14:36:40 -03:00
|
|
|
|
2023-05-15 12:38:28 -04:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/conversation_input_space_left"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?android:windowBackground"
|
|
|
|
android:paddingStart="5dp"
|
|
|
|
android:paddingEnd="5dp"
|
|
|
|
android:visibility="gone"
|
2023-06-27 11:03:03 -04:00
|
|
|
app:layout_constraintBottom_toBottomOf="@id/conversation_input_panel_barrier"
|
2023-05-17 10:28:50 -04:00
|
|
|
app:layout_constraintEnd_toEndOf="@id/parent_end_guideline"
|
|
|
|
app:layout_constraintStart_toStartOf="@id/parent_start_guideline"
|
2023-05-15 12:38:28 -04:00
|
|
|
tools:text="160/160 (1)"
|
|
|
|
tools:visibility="visible" />
|
2023-04-14 12:46:18 -03:00
|
|
|
|
2023-06-30 14:36:40 -03:00
|
|
|
<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"
|
2023-07-28 13:26:58 -04:00
|
|
|
app:layout_constraintBottom_toTopOf="@id/conversation_bottom_panel_barrier"
|
2023-06-30 14:36:40 -03:00
|
|
|
tools:visibility="visible" />
|
|
|
|
|
2023-05-17 10:28:50 -04:00
|
|
|
<androidx.fragment.app.FragmentContainerView
|
|
|
|
android:id="@+id/input_container"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
app:layout_constraintBottom_toBottomOf="@id/navigation_bar_guideline"
|
|
|
|
app:layout_constraintEnd_toEndOf="@id/parent_end_guideline"
|
|
|
|
app:layout_constraintStart_toStartOf="@id/parent_start_guideline"
|
|
|
|
app:layout_constraintTop_toTopOf="@id/keyboard_guideline" />
|
|
|
|
|
2023-06-27 11:03:03 -04:00
|
|
|
<androidx.fragment.app.FragmentContainerView
|
|
|
|
android:id="@+id/emoji_search_container"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
app:layout_constraintBottom_toBottomOf="@id/keyboard_guideline"
|
|
|
|
app:layout_constraintEnd_toEndOf="@id/parent_end_guideline"
|
|
|
|
app:layout_constraintStart_toStartOf="@id/parent_start_guideline" />
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/reactions_shade"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:background="@color/reactions_screen_light_shade_color"
|
|
|
|
android:foreground="@color/reactions_screen_dark_shade_color"
|
|
|
|
android:visibility="gone" />
|
|
|
|
|
2023-05-23 14:14:50 -03:00
|
|
|
<org.thoughtcrime.securesms.components.menu.SignalBottomActionBar
|
|
|
|
android:id="@+id/conversation_bottom_action_bar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginHorizontal="16dp"
|
|
|
|
android:layout_marginBottom="16dp"
|
|
|
|
android:visibility="gone"
|
2023-07-19 12:55:42 -04:00
|
|
|
app:layout_constraintBottom_toBottomOf="@id/keyboard_guideline"
|
2023-05-23 14:14:50 -03:00
|
|
|
app:layout_constraintEnd_toEndOf="@+id/parent_end_guideline"
|
|
|
|
app:layout_constraintStart_toStartOf="@+id/parent_start_guideline" />
|
|
|
|
|
|
|
|
<ViewStub
|
|
|
|
android:id="@+id/conversation_reaction_scrubber_stub"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:inflatedId="@+id/conversation_reaction_scrubber"
|
|
|
|
android:layout="@layout/conversation_reaction_scrubber"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="@+id/parent_end_guideline"
|
|
|
|
app:layout_constraintStart_toStartOf="@+id/parent_start_guideline"
|
|
|
|
app:layout_constraintTop_toTopOf="@+id/status_bar_guideline" />
|
|
|
|
|
2023-05-17 10:28:50 -04:00
|
|
|
</org.thoughtcrime.securesms.components.InputAwareConstraintLayout>
|