2017-02-27 06:21:46 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-12-17 15:25:35 +01:00
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-06-09 16:55:34 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:id="@+id/activity_view_thread"
|
2017-03-01 03:38:47 +01:00
|
|
|
android:layout_width="match_parent"
|
2017-07-15 09:10:55 +02:00
|
|
|
android:layout_height="match_parent"
|
2019-06-09 16:55:34 +02:00
|
|
|
tools:context=".components.report.ReportActivity">
|
2017-07-15 09:10:55 +02:00
|
|
|
|
|
|
|
<include layout="@layout/toolbar_basic" />
|
|
|
|
|
2020-01-13 21:15:22 +01:00
|
|
|
<androidx.viewpager2.widget.ViewPager2
|
2019-06-09 16:55:34 +02:00
|
|
|
android:id="@+id/wizard"
|
2017-02-27 06:21:46 +01:00
|
|
|
android:layout_width="match_parent"
|
2017-03-10 23:47:04 +01:00
|
|
|
android:layout_height="match_parent"
|
2019-06-09 16:55:34 +02:00
|
|
|
android:overScrollMode="never"
|
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
|
2017-02-27 06:21:46 +01:00
|
|
|
|
2019-06-09 16:55:34 +02:00
|
|
|
<include layout="@layout/item_status_bottom_sheet" />
|
2017-07-15 09:10:55 +02:00
|
|
|
|
2018-12-17 15:25:35 +01:00
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|