mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
447740e760
--HG-- extra : rebase_source : 9bb92ef85913759a8f58cc7e9f3518317ebde796
68 lines
3.0 KiB
XML
68 lines
3.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- This Source Code Form is subject to the terms of the Mozilla Public
|
|
- 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/. -->
|
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent">
|
|
|
|
<LinearLayout android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:orientation="vertical"
|
|
android:padding="10dip">
|
|
|
|
<TextView android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:padding="10dip"
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
android:textStyle="bold"
|
|
android:text="@string/crash_message"/>
|
|
|
|
<TextView android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:padding="10dip"
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
android:text="@string/crash_help_message"/>
|
|
|
|
<CheckBox android:id="@+id/send_report"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:checked="true"
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
android:text="@string/crash_send_report_message"/>
|
|
|
|
<CheckBox android:id="@+id/include_url"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
android:text="@string/crash_include_url"/>
|
|
|
|
<LinearLayout android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:padding="10dip"
|
|
android:gravity="center_horizontal">
|
|
|
|
<Button android:id="@+id/close"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginRight="10px"
|
|
android:minWidth="120sp"
|
|
android:onClick="onCloseClick"
|
|
android:text="@string/crash_close_label"/>
|
|
|
|
<Button android:id="@+id/restart"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="10px"
|
|
android:minWidth="120sp"
|
|
android:onClick="onRestartClick"
|
|
android:text="@string/crash_restart_label"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</ScrollView>
|