我的答案是NO
为什么?
关于Android中未处理异常的性质,您必须了解一件重要的事情,没有......在Android中这是一个未捕获的异常,这意味着您不能像您一样“处理”它或从中恢复也许会在.Net环境中。
Xamarin(Mono) 在内部“处理”那些未捕获的异常,方法是用 try-catch 包围所有内容并引发 Unhandled 事件,但这不是重点。由于各种原因,也不鼓励与 UI 交互。
从理论上讲,有几种“解决方法”可以向用户显示对话框或重新启动应用程序,我不建议这样做。相反,您应该使用 try-catch 子句围绕敏感区域来处理预期的异常,因为意外的只是使用异常报告组件并在分析报告的异常后更新您的应用程序
解释自
你也可以从应用程序中捕获未处理的异常 像这样
创建一个基本活动,如名称ErrorActivity
看这个例子
protected override void OnCreate(Bundle bundle)
{
//register error handlers
AppDomain.CurrentDomain.UnhandledException += ErrorHandler.CurrentDomainOnUnhandledException;
TaskScheduler.UnobservedTaskException += ErrorHandler.TaskSchedulerOnUnobservedTaskException;
}
在错误处理程序类中
public static class ErrorHandler
{
/// <summary>
/// Tasks the scheduler on unobserved task exception.
/// </summary>
/// <param name="sender">The sender.</param>
/// <param name="unobservedTaskExceptionEventArgs">
/// The <see cref="UnobservedTaskExceptionEventArgs" /> instance containing
/// the event data.
/// </param>
public static void TaskSchedulerOnUnobservedTaskException(object sender,
UnobservedTaskExceptionEventArgs unobservedTaskExceptionEventArgs)
{
var newExc = new Exception("TaskSchedulerOnUnobservedTaskException",
unobservedTaskExceptionEventArgs.Exception);
LogUnhandledException(newExc);
}
/// <summary>
/// Currents the domain on unhandled exception.
/// </summary>
/// <param name="sender">The sender.</param>
/// <param name="unhandledExceptionEventArgs">
/// The <see cref="UnhandledExceptionEventArgs" /> instance containing the event
/// data.
/// </param>
public static void CurrentDomainOnUnhandledException(object sender,
UnhandledExceptionEventArgs unhandledExceptionEventArgs)
{
var newExc = new Exception("CurrentDomainOnUnhandledException",
unhandledExceptionEventArgs.ExceptionObject as Exception);
LogUnhandledException(newExc);
}
/// <summary>
/// Logs the unhandled exception.
/// </summary>
/// <param name="exception">The exception.</param>
internal static void LogUnhandledException(Exception exception)
{
try
{
string error =
$"Exception Caught:{DateTime.Now:F} The Error Message IS {exception.Message}\n\r full stack trace is {exception.ToString()} ";
#if DEBUG
const string errorFileName = "errorlog.txt";
var libraryPath = System.Environment.GetFolderPath(System.Environment.SpecialFolder.Personal);
// iOS: Environment.SpecialFolder.Resources
var errorFilePath = System.IO.Path.Combine(libraryPath, errorFileName);
System.IO.File.WriteAllText(errorFilePath, error);
Android.Util.Log.Error("Crash Report error not handled", ex.ToString());
#else
// Log to Android Device Logging.
Android.Util.Log.Error("Crash Report", error);
#endif
}
catch (Exception ex)
{
Android.Util.Log.Error("Crash Report error not handled", ex.ToString());
// just suppress any error logging exceptions
}
}
}
现在您可以像这样从 ErrorActivity 继承所有活动
Public class Fooactivity:ErrorActivity
{
}
现在您可以处理应用程序中的错误..因此您可以从日志文件..或android设备日志记录监视器中获取错误日志..希望这会有所帮助...