Yuito-app-android/app/src/main/res/layout/activity_modal_timeline.xml

45 lines
1.8 KiB
XML
Raw Normal View History

2018-01-06 19:01:37 +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"
xmlns:app="http://schemas.android.com/apk/res-auto"
2018-08-13 02:14:57 +02:00
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_view_thread"
2018-01-06 19:01:37 +01:00
android:layout_width="match_parent"
android:layout_height="match_parent"
2018-08-13 02:14:57 +02:00
android:orientation="vertical"
2018-01-06 19:01:37 +01:00
tools:context="com.keylesspalace.tusky.ModalTimelineActivity">
2018-08-13 02:14:57 +02:00
<androidx.coordinatorlayout.widget.CoordinatorLayout
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" />
<androidx.fragment.app.FragmentContainerView
2018-08-13 02:14:57 +02:00
android:id="@+id/contentFrame"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
2019-11-19 16:00:03 +01:00
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/floating_btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="16dp"
android:contentDescription="@string/action_compose"
app:layout_anchor="@id/contentFrame"
app:layout_anchorGravity="bottom|end"
app:srcCompat="@drawable/ic_create_24dp" />
2018-08-13 02:14:57 +02:00
<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-08-13 02:14:57 +02:00
</LinearLayout>