2019-02-26 19:29:52 -08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2021-02-11 11:37:40 -05:00
|
|
|
<FrameLayout
|
2022-08-09 13:29:04 -03:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
tools:viewBindingIgnore="true"
|
2019-02-26 19:29:52 -08:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
2021-02-11 11:37:40 -05:00
|
|
|
<View
|
|
|
|
android:layout_height="5dp"
|
2019-02-26 19:29:52 -08:00
|
|
|
android:layout_width="match_parent"
|
2021-02-11 11:37:40 -05:00
|
|
|
android:background="@drawable/toolbar_shadow" />
|
2019-02-26 19:29:52 -08:00
|
|
|
|
2021-02-11 11:37:40 -05:00
|
|
|
<ScrollView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
2019-02-26 19:29:52 -08:00
|
|
|
|
2021-02-11 11:37:40 -05:00
|
|
|
<FrameLayout
|
2019-02-26 19:29:52 -08:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2021-02-11 11:37:40 -05:00
|
|
|
android:padding="16dp">
|
|
|
|
|
2021-05-03 11:34:41 -03:00
|
|
|
<org.thoughtcrime.securesms.conversation.colors.ColorizerView
|
|
|
|
android:id="@+id/colorizer"
|
|
|
|
android:visibility="gone"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" />
|
|
|
|
|
2021-02-11 11:37:40 -05:00
|
|
|
<ViewStub
|
|
|
|
android:id="@+id/longmessage_sent_stub"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout="@layout/longmessage_bubble_sent"/>
|
|
|
|
|
|
|
|
<ViewStub
|
|
|
|
android:id="@+id/longmessage_received_stub"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout="@layout/longmessage_bubble_received"/>
|
|
|
|
|
|
|
|
</FrameLayout>
|
2019-02-26 19:29:52 -08:00
|
|
|
|
2021-02-11 11:37:40 -05:00
|
|
|
</ScrollView>
|
2019-02-26 19:29:52 -08:00
|
|
|
|
2021-02-11 11:37:40 -05:00
|
|
|
</FrameLayout>
|