2018-12-06 15:53:03 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2019-09-29 14:36:22 +05:30
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-12-06 15:53:03 +05:30
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:focusable="true"
|
|
|
|
android:focusableInTouchMode="true"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
|
|
|
android:layout_width="match_parent"
|
2019-09-29 14:36:22 +05:30
|
|
|
android:layout_height="wrap_content"
|
|
|
|
app:liftOnScroll="true">
|
2018-12-06 15:53:03 +05:30
|
|
|
|
2019-09-29 14:07:57 +05:30
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
2018-12-06 15:53:03 +05:30
|
|
|
android:id="@+id/toolbar"
|
|
|
|
style="@style/Toolbar"
|
2019-09-29 14:36:22 +05:30
|
|
|
app:layout_collapseMode="pin"
|
2019-10-12 14:59:52 +05:30
|
|
|
app:navigationIcon="@drawable/ic_keyboard_backspace_black_24dp"
|
2019-10-03 00:24:39 +05:30
|
|
|
app:title="@string/report_bug"
|
|
|
|
app:titleTextAppearance="@style/ToolbarTextAppearanceNormal" />
|
2018-12-06 15:53:03 +05:30
|
|
|
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
|
2019-09-29 14:36:22 +05:30
|
|
|
<androidx.core.widget.NestedScrollView
|
2018-12-06 15:53:03 +05:30
|
|
|
android:layout_width="match_parent"
|
2019-09-29 14:36:22 +05:30
|
|
|
android:layout_height="wrap_content"
|
|
|
|
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior">
|
2018-12-06 15:53:03 +05:30
|
|
|
|
2019-09-29 14:36:22 +05:30
|
|
|
<FrameLayout
|
2018-12-06 15:53:03 +05:30
|
|
|
android:layout_width="match_parent"
|
2019-09-29 14:36:22 +05:30
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_weight="1">
|
2018-12-06 15:53:03 +05:30
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:clipToPadding="false"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<include
|
|
|
|
layout="@layout/bug_report_card_report"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginBottom="8dp" />
|
|
|
|
|
|
|
|
<include
|
|
|
|
layout="@layout/bug_report_card_device_info"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
|
|
|
<Space
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="56dp"
|
|
|
|
android:layout_margin="16dp" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2019-09-29 14:36:22 +05:30
|
|
|
<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_white_24dp" />
|
2018-12-06 15:53:03 +05:30
|
|
|
|
2019-09-29 14:36:22 +05:30
|
|
|
</FrameLayout>
|
|
|
|
</androidx.core.widget.NestedScrollView>
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|