2017-02-21 03:32:10 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-08-13 02:14:57 +02:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-07-15 09:10:55 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2018-08-13 02:14:57 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2017-02-21 03:32:10 +01:00
|
|
|
android:id="@+id/activity_view_thread"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2018-08-13 02:14:57 +02:00
|
|
|
android:orientation="vertical"
|
2019-11-19 10:15:32 +01:00
|
|
|
tools:context="com.keylesspalace.tusky.StatusListActivity">
|
2017-02-21 03:32:10 +01:00
|
|
|
|
2018-08-13 02:14:57 +02:00
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout
|
2017-02-21 03:32:10 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2018-08-13 02:14:57 +02:00
|
|
|
android:layout_weight="1">
|
|
|
|
|
|
|
|
<include layout="@layout/toolbar_basic" />
|
2017-02-21 03:32:10 +01:00
|
|
|
|
2018-08-13 02:14:57 +02:00
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/fragment_container"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
|
|
|
|
|
|
|
|
<include layout="@layout/item_status_bottom_sheet" />
|
|
|
|
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|
|
|
|
|
|
|
|
<include
|
|
|
|
android:id="@+id/quick_toot_container"
|
|
|
|
layout="@layout/view_quick_toot"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="0"/>
|
2018-05-06 22:05:54 +02:00
|
|
|
|
2018-08-13 02:14:57 +02:00
|
|
|
</LinearLayout>
|