有没有办法为 MonoDroid 创建全局错误处理程序?我的调试器坏了,所以我需要一种方法来在应用程序崩溃时查看异常信息。
最佳答案
似乎 AndroidEnvironment.UnhandledExceptionRaiser
就是你要找的:
//that's a dirty-code example, do not use as-is! :)
AndroidEnvironment.UnhandledExceptionRaiser += (sender, args) =>
{
File.AppendAllText("tmp.txt", args.Exception.ToString());
};
关于android - MonoDroid : Global Error Handler,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8683304/