2 * Copyright © 2019 Damyan Ivanov.
3 * This file is part of MoLe.
4 * MoLe is free software: you can distribute it and/or modify it
5 * under the term of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your opinion), any later version.
9 * MoLe is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License terms for details.
14 * You should have received a copy of the GNU General Public License
15 * along with MoLe. If not, see <https://www.gnu.org/licenses/>.
18 package net.ktnx.mobileledger.ui;
20 import android.app.AlertDialog;
21 import android.app.Dialog;
22 import android.content.DialogInterface;
23 import android.content.Intent;
24 import android.os.Bundle;
25 import androidx.annotation.NonNull;
26 import androidx.annotation.Nullable;
27 import androidx.fragment.app.DialogFragment;
28 import android.view.LayoutInflater;
29 import android.view.View;
30 import android.widget.ScrollView;
31 import android.widget.TextView;
33 import net.ktnx.mobileledger.R;
34 import net.ktnx.mobileledger.utils.Globals;
36 public class CrashReportDialogFragment extends DialogFragment {
37 private String mCrashReportText;
38 private ScrollView repScroll = null;
41 public Dialog onCreateDialog(@Nullable Bundle savedInstanceState) {
42 AlertDialog.Builder builder = new AlertDialog.Builder(getActivity());
43 LayoutInflater inflater = getActivity().getLayoutInflater();
45 if (savedInstanceState != null)
46 mCrashReportText = savedInstanceState.getString("crash_text");
48 View view = inflater.inflate(R.layout.crash_dialog, null);
49 ((TextView) view.findViewById(R.id.textCrashReport)).setText(mCrashReportText);
50 repScroll = view.findViewById(R.id.scrollText);
51 builder.setTitle(R.string.crash_dialog_title).setView(view)
52 .setPositiveButton(R.string.btn_send_crash_report,
53 new DialogInterface.OnClickListener() {
55 public void onClick(DialogInterface dialog, int which) {
57 Intent email = new Intent(Intent.ACTION_SEND);
58 email.putExtra(Intent.EXTRA_EMAIL,
59 new String[]{Globals.developerEmail});
60 email.putExtra(Intent.EXTRA_SUBJECT, "MoLe crash report");
61 email.putExtra(Intent.EXTRA_TEXT, mCrashReportText);
62 email.setType("message/rfc822");
63 startActivity(Intent.createChooser(email,
64 getResources().getString(R.string.send_crash_via)));
67 .setNegativeButton(R.string.btn_not_now, new DialogInterface.OnClickListener() {
69 public void onClick(DialogInterface dialog, int which) {
70 CrashReportDialogFragment.this.getDialog().cancel();
73 .setNeutralButton(R.string.btn_show_report, new DialogInterface.OnClickListener() {
75 public void onClick(DialogInterface dialog, int which) {
79 AlertDialog dialog = builder.create();
80 dialog.setOnShowListener(new DialogInterface.OnShowListener() {
82 public void onShow(DialogInterface dialogIinterface) {
83 dialog.getButton(AlertDialog.BUTTON_NEUTRAL)
84 .setOnClickListener(new View.OnClickListener() {
86 public void onClick(View v) {
87 if (repScroll != null) {
88 repScroll.setVisibility(View.VISIBLE);
89 v.setVisibility(View.GONE);
98 public void onSaveInstanceState(@NonNull Bundle outState) {
99 super.onSaveInstanceState(outState);
100 outState.putString("crash_text", mCrashReportText);
102 public void setCrashReportText(String text) {
103 mCrashReportText = text;