1 line
No EOL
4.8 KiB
XML
1 line
No EOL
4.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
|
android:id="@+id/app_bar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:elevation="0dp"
|
|
app:elevation="0dp">
|
|
|
|
<androidx.appcompat.widget.Toolbar
|
|
android:id="@+id/toolbar"
|
|
style="@style/Toolbar"
|
|
app:layout_collapseMode="pin">
|
|
|
|
|
|
<TextView
|
|
android:id="@+id/title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:gravity="center"
|
|
android:text="@string/error"
|
|
style="@style/BigTitleTextAppearanceToolbar"
|
|
android:textStyle="bold"
|
|
tools:ignore="MissingPrefix" />
|
|
|
|
</androidx.appcompat.widget.Toolbar>
|
|
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:padding="16dp"
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior">
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:paddingBottom="16dp"
|
|
app:srcCompat="@drawable/ic_bug_report_white_24dp"
|
|
app:tint="@color/md_grey_800" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/bug_report_summary" />
|
|
|
|
<ScrollView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="12dp"
|
|
android:layout_weight="1">
|
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
android:id="@+id/showCrashError"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@color/md_grey_400"
|
|
android:padding="16dp"
|
|
android:text="@string/error" />
|
|
</ScrollView>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="end|bottom"
|
|
android:layout_weight="0"
|
|
android:gravity="center">
|
|
|
|
<com.google.android.material.card.MaterialCardView
|
|
android:id="@+id/sendCrashLog"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="8dp"
|
|
app:cardBackgroundColor="@color/md_blue_A200"
|
|
app:cardCornerRadius="6dp"
|
|
app:cardUseCompatPadding="true">
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center"
|
|
android:paddingStart="20dp"
|
|
android:paddingTop="12dp"
|
|
android:paddingEnd="20dp"
|
|
android:paddingBottom="12dp"
|
|
android:text="@string/send_crash_log"
|
|
android:textColor="@color/md_white_1000" />
|
|
</com.google.android.material.card.MaterialCardView>
|
|
|
|
<com.google.android.material.card.MaterialCardView
|
|
android:id="@+id/clearAppData"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="8dp"
|
|
app:cardBackgroundColor="@color/md_blue_A200"
|
|
app:cardCornerRadius="6dp"
|
|
app:cardUseCompatPadding="true">
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center"
|
|
android:paddingStart="20dp"
|
|
android:paddingTop="12dp"
|
|
android:paddingEnd="20dp"
|
|
android:paddingBottom="12dp"
|
|
android:text="@string/clear_app_data"
|
|
android:textColor="@color/md_white_1000" />
|
|
</com.google.android.material.card.MaterialCardView>
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout> |