2017-01-23 06:19:30 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2017-07-15 09:10:55 +02:00
|
|
|
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-01-23 06:19:30 +01:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2017-07-15 09:10:55 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2017-01-23 06:19:30 +01:00
|
|
|
android:id="@+id/activity_view_thread"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
tools:context="com.keylesspalace.tusky.ViewThreadActivity">
|
|
|
|
|
2017-07-15 09:10:55 +02:00
|
|
|
<include layout="@layout/toolbar_basic" />
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/fragment_container"
|
2017-01-23 06:19:30 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2017-07-15 09:10:55 +02:00
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
|
2017-01-23 06:19:30 +01:00
|
|
|
|
2018-05-06 22:05:54 +02:00
|
|
|
<include layout="@layout/item_status_bottom_sheet"/>
|
|
|
|
|
2017-03-09 23:21:02 +01:00
|
|
|
</android.support.design.widget.CoordinatorLayout>
|