diff --git a/app/src/main/res/layout/fragment_crash_reporter.xml b/app/src/main/res/layout/fragment_crash_reporter.xml index d4a4782cd..49474b99d 100644 --- a/app/src/main/res/layout/fragment_crash_reporter.xml +++ b/app/src/main/res/layout/fragment_crash_reporter.xml @@ -3,90 +3,90 @@ - License, v. 2.0. If a copy of the MPL was not distributed with this - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> + 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:background="?above"> + android:id="@+id/crash_tab_image" + android:layout_width="0dp" + android:layout_height="120dp" + android:layout_marginTop="40dp" + android:importantForAccessibility="no" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toTopOf="parent" + app:layout_constraintWidth_percent="0.8" + app:srcCompat="@drawable/fenix_error_1" /> + android:id="@+id/title" + android:layout_width="300dp" + android:layout_height="wrap_content" + android:layout_marginTop="6dp" + android:lineSpacingExtra="8sp" + android:singleLine="false" + android:textColor="?primaryText" + android:textSize="24sp" + android:textStyle="bold" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toBottomOf="@id/crash_tab_image" + tools:text="@string/tab_crash_title_2" /> + android:id="@+id/sendCrashCheckbox" + android:layout_width="0dp" + android:layout_height="32dp" + android:layout_marginBottom="20dp" + android:buttonTint="?accentHighContrast" + android:checked="true" + android:text="@string/tab_crash_send_report" + android:textColor="?primaryText" + android:textSize="15sp" + app:layout_constraintBottom_toTopOf="@id/closeTabButton" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintWidth_percent="0.9" />