<bdo id='ho8SN'></bdo><ul id='ho8SN'></ul>
      <i id='ho8SN'><tr id='ho8SN'><dt id='ho8SN'><q id='ho8SN'><span id='ho8SN'><b id='ho8SN'><form id='ho8SN'><ins id='ho8SN'></ins><ul id='ho8SN'></ul><sub id='ho8SN'></sub></form><legend id='ho8SN'></legend><bdo id='ho8SN'><pre id='ho8SN'><center id='ho8SN'></center></pre></bdo></b><th id='ho8SN'></th></span></q></dt></tr></i><div id='ho8SN'><tfoot id='ho8SN'></tfoot><dl id='ho8SN'><fieldset id='ho8SN'></fieldset></dl></div>
    1. <small id='ho8SN'></small><noframes id='ho8SN'>

      <tfoot id='ho8SN'></tfoot>
    2. <legend id='ho8SN'><style id='ho8SN'><dir id='ho8SN'><q id='ho8SN'></q></dir></style></legend>

      1. 如何使用 Crashlytics 在崩溃后显示对话框?

        时间:2023-08-29
        1. <legend id='c2vae'><style id='c2vae'><dir id='c2vae'><q id='c2vae'></q></dir></style></legend>

            <tbody id='c2vae'></tbody>

                <bdo id='c2vae'></bdo><ul id='c2vae'></ul>
              • <i id='c2vae'><tr id='c2vae'><dt id='c2vae'><q id='c2vae'><span id='c2vae'><b id='c2vae'><form id='c2vae'><ins id='c2vae'></ins><ul id='c2vae'></ul><sub id='c2vae'></sub></form><legend id='c2vae'></legend><bdo id='c2vae'><pre id='c2vae'><center id='c2vae'></center></pre></bdo></b><th id='c2vae'></th></span></q></dt></tr></i><div id='c2vae'><tfoot id='c2vae'></tfoot><dl id='c2vae'><fieldset id='c2vae'></fieldset></dl></div>
                <tfoot id='c2vae'></tfoot>
              • <small id='c2vae'></small><noframes id='c2vae'>

                  本文介绍了如何使用 Crashlytics 在崩溃后显示对话框?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  如何使用 Crashlytics 在崩溃后显示对话框.

                  How to show a Dialog after crash by using Crashlytics.

                  例如:崩溃后我需要打开一个对话框,用户可以在其中放置任何评论(注意)他是如何导致崩溃的.

                  for example: after crash I need open a dialog where user will put any comment(note) how he did that crash.

                  Crashlytics 中有任何选项吗?

                  Is any option in Crashlytics?

                  推荐答案

                  是的,当然.这也非常简单.

                  Yes, definitely. It's also extremely easy.

                  Crashlytics.getInstance().setListener(new CrashlyticsListener() {
                    @Override
                    public void crashlyticsDidDetectCrashDuringPreviousExecution() {
                      // now it's the right time to show the dialog
                    }
                  });
                  Crashlytics.start(context);
                  

                  编辑(2015 年 7 月已弃用)

                  如果您使用的是新的 Fabric 集成,则代码会略有不同(此处所示).它应该是这样的:

                  If you're using the new Fabric integration, the code is slightly different (as seen here). It should look like this:

                  Fabric.with(this, new Crashlytics());
                  Crashlytics.getInstance().setListener(new CrashlyticsListener() {
                    @Override
                    public void crashlyticsDidDetectCrashDuringPreviousExecution() {
                      // now it's the right time to show the dialog
                    }
                  });
                  

                  EDIT 2(最新的 Fabric SDK 已弃用 setMethods)

                  final CrashlyticsListener listener = new CrashlyticsListener() {
                              @Override
                              public void crashlyticsDidDetectCrashDuringPreviousExecution(){
                                    // now it's the right time to show the dialog
                              }
                          };
                  
                  final CrashlyticsCore core = new CrashlyticsCore
                                                    .Builder()
                                                    .listener(listener)
                                                    .build();
                  
                  Fabric.with(this, new Crashlytics.Builder().core(core).build());
                  

                  <小时>

                  要测试您的集成,您只需调用 Crashlytics.getInstance().crash().简单但方便.

                  这篇关于如何使用 Crashlytics 在崩溃后显示对话框?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:如何为三星 Galaxy S4 (1080X1920) 创建 avd 下一篇:BroadcastReceiver onReceive 打开对话框

                  相关文章

                  最新文章

                  <tfoot id='fpNYb'></tfoot>
                1. <i id='fpNYb'><tr id='fpNYb'><dt id='fpNYb'><q id='fpNYb'><span id='fpNYb'><b id='fpNYb'><form id='fpNYb'><ins id='fpNYb'></ins><ul id='fpNYb'></ul><sub id='fpNYb'></sub></form><legend id='fpNYb'></legend><bdo id='fpNYb'><pre id='fpNYb'><center id='fpNYb'></center></pre></bdo></b><th id='fpNYb'></th></span></q></dt></tr></i><div id='fpNYb'><tfoot id='fpNYb'></tfoot><dl id='fpNYb'><fieldset id='fpNYb'></fieldset></dl></div>

                    1. <small id='fpNYb'></small><noframes id='fpNYb'>

                    2. <legend id='fpNYb'><style id='fpNYb'><dir id='fpNYb'><q id='fpNYb'></q></dir></style></legend>
                      • <bdo id='fpNYb'></bdo><ul id='fpNYb'></ul>