mirror of
https://github.com/ArcaneChat/android.git
synced 2026-07-03 14:05:24 +02:00
097891e72a
the warning about outdated apps was pretty unreliable in the past - because of too short timings and also because of the "installation date" and the fact that an "installer" was used, is not always reliable. also, the "installer date" could be wrong - if the installation was done when the clock was altered badly. as we cannot rely on the things the system provides here, we move the whole thing to the core at https://github.com/deltachat/deltachat-core-rust/pull/1901 which has also the advantage that this is done for all uis then.
58 lines
2.5 KiB
XML
58 lines
2.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_height="match_parent" android:layout_width="match_parent">
|
|
|
|
<org.thoughtcrime.securesms.components.ScaleStableImageView
|
|
android:id="@+id/conversation_background"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:ignore="ContentDescription"
|
|
android:scaleType="centerCrop" />
|
|
|
|
<org.thoughtcrime.securesms.components.InputAwareLayout
|
|
android:id="@+id/layout_container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<org.thoughtcrime.securesms.components.camera.QuickAttachmentDrawer
|
|
android:id="@+id/quick_attachment_drawer"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout android:id="@+id/conversation_container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
android:paddingTop="?attr/actionBarSize"
|
|
android:gravity="bottom"
|
|
android:clipToPadding="false"
|
|
android:clipChildren="false">
|
|
|
|
<FrameLayout android:id="@+id/fragment_content"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1" />
|
|
|
|
<ViewStub
|
|
android:id="@+id/attachment_editor_stub"
|
|
android:inflatedId="@+id/attachment_editor"
|
|
android:layout="@layout/conversation_activity_attachment_editor_stub"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"/>
|
|
|
|
<include layout="@layout/conversation_input_panel"/>
|
|
|
|
<ViewStub
|
|
android:id="@+id/emoji_drawer_stub"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:inflatedId="@+id/emoji_drawer"
|
|
android:layout="@layout/conversation_activity_emojidrawer_stub" />
|
|
|
|
</LinearLayout>
|
|
</org.thoughtcrime.securesms.components.camera.QuickAttachmentDrawer>
|
|
</org.thoughtcrime.securesms.components.InputAwareLayout>
|
|
</RelativeLayout>
|