如何修改应用程序在xamarin中崩溃时出现的默认弹出消息

时间:2017-08-29 11:56:36

标签: c# android xamarin

借助此Post,我可以将unhandledException写入文件。现在如何修改应用程序崩溃时出现的默认弹出消息,默认弹出窗口将显示说Unfortunately, App has stopped

我需要添加报告按钮。 xamarin中是否有任何方法?

默认消息当应用程序崩溃时: Default message When app get crashed

应用程序崩溃时我们得到的修改后的弹出窗口: Modified popup we get when app gets crashed我想这样做。

1 个答案:

答案 0 :(得分:0)

你会得到"不幸的是,App已停止了。"当你得到一个未处理的异常时弹出。

您需要一个try-catch代码,可能会引发异常。

示例:

MAX

如果您致电public bool CompressBitmap(string path, Bitmap bitmap) { var filestream = new FileStream(path, FileMode.Create); bitmap.Compress(Bitmap.CompressFormat.Png, 100, filestream); } 并且CompressBitmap为空,您将获得"很遗憾,应用已停止。"弹出窗口,因为您没有处理bitmap。你需要一个试一试:

NullReferenceException