2018-12-06 10:23:03 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2021-09-11 19:58:33 +00:00
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-12-06 10:23:03 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2021-09-11 19:58:33 +00:00
|
|
|
android:fitsSystemWindows="true">
|
2018-12-06 10:23:03 +00:00
|
|
|
|
2021-09-11 19:58:33 +00:00
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
2018-12-06 10:23:03 +00:00
|
|
|
android:layout_width="match_parent"
|
2021-09-11 19:58:33 +00:00
|
|
|
android:layout_height="wrap_content"
|
2021-10-25 14:34:36 +00:00
|
|
|
android:fitsSystemWindows="true"
|
2021-09-11 19:58:33 +00:00
|
|
|
app:liftOnScroll="true">
|
2018-12-06 10:23:03 +00:00
|
|
|
|
2021-09-11 19:58:33 +00:00
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
|
|
|
android:id="@+id/toolbar"
|
|
|
|
style="@style/Toolbar"
|
|
|
|
app:layout_collapseMode="pin"
|
|
|
|
app:navigationIcon="@drawable/ic_keyboard_backspace_black"
|
|
|
|
app:title="@string/report_bug"
|
|
|
|
app:titleTextAppearance="@style/ToolbarTextAppearanceNormal" />
|
2018-12-06 10:23:03 +00:00
|
|
|
|
2021-09-11 19:58:33 +00:00
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
2018-12-06 10:23:03 +00:00
|
|
|
|
2021-09-11 19:58:33 +00:00
|
|
|
<androidx.core.widget.NestedScrollView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior">
|
2019-12-05 18:18:54 +00:00
|
|
|
|
2021-09-11 19:58:33 +00:00
|
|
|
<LinearLayout
|
2018-12-06 10:23:03 +00:00
|
|
|
android:layout_width="match_parent"
|
2019-12-01 15:27:01 +00:00
|
|
|
android:layout_height="wrap_content"
|
2021-09-11 19:58:33 +00:00
|
|
|
android:clipToPadding="false"
|
|
|
|
android:orientation="vertical">
|
2018-12-06 10:23:03 +00:00
|
|
|
|
2021-09-11 19:58:33 +00:00
|
|
|
<include
|
|
|
|
android:id="@+id/card_report"
|
|
|
|
layout="@layout/bug_report_card_report"
|
2018-12-06 10:23:03 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2021-09-11 19:58:33 +00:00
|
|
|
android:layout_marginBottom="8dp" />
|
2018-12-06 10:23:03 +00:00
|
|
|
|
2021-09-11 19:58:33 +00:00
|
|
|
<include
|
|
|
|
android:id="@+id/card_device_info"
|
|
|
|
layout="@layout/bug_report_card_device_info"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content" />
|
2019-12-05 18:18:54 +00:00
|
|
|
|
2021-09-11 19:58:33 +00:00
|
|
|
<Space
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="56dp"
|
|
|
|
android:layout_margin="16dp" />
|
2018-12-06 10:23:03 +00:00
|
|
|
|
2021-09-11 19:58:33 +00:00
|
|
|
</LinearLayout>
|
2018-12-06 10:23:03 +00:00
|
|
|
|
2021-09-11 19:58:33 +00:00
|
|
|
</androidx.core.widget.NestedScrollView>
|
2019-12-01 15:27:01 +00:00
|
|
|
|
2021-09-11 19:58:33 +00:00
|
|
|
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
|
|
|
android:id="@+id/sendFab"
|
|
|
|
style="@style/Fab"
|
|
|
|
android:layout_gravity="bottom|end"
|
|
|
|
android:layout_margin="16dp"
|
|
|
|
app:srcCompat="@drawable/ic_send" />
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|