我想要实现的只是捕获我的应用程序上的异常,以便我可以将它们发送到服务器。我发现我可以通过在StackOverflow中以Java回答here的原生Android代码编写自定义 UncaughtExceptionHandler 来实现此目的。
这是我的 CustomExceptionHandler 类:
public class CustomExceptionHandler : Thread.IUncaughtExceptionHandler
{
public IntPtr Handle { get; private set; }
public CustomExceptionHandler(Thread.IUncaughtExceptionHandler exceptionHandler)
{
Handle = exceptionHandler.Handle;
}
public void UncaughtException(Thread t, Throwable e)
{
// Submit exception details to a server
...
// Display error message for local debugging purposes
Debug.WriteLine(e);
}
public void Dispose()
{
throw new NotImplementedException();
}
}
然后我用这个类在 Activity 中设置 DefaultUncaughtExceptionHandler :
// Set the default exception handler to a custom one
Thread.DefaultUncaughtExceptionHandler = new CustomExceptionHandler(
Thread.DefaultUncaughtExceptionHandler);
我不知道这种方法有什么问题,它确实构建了但是我在运行时得到了 InvalidCastException 。
我的 CustomExceptionHandler 和 DefaultUncaughtExceptionHandler 具有相同的 Thread.IUncaughtExceptionHandler 接口类型,但为什么会出现此错误?请赐教。谢谢。
答案 0 :(得分:10)
再次袭来:D这是一个常见的错误。如果实现Java接口,则必须继承Java.Lang.Object
。
public class CustomExceptionHandler : Java.Lang.Object, Thread.IUncaughtExceptionHandler
{
public void UncaughtException(Thread t, Throwable e)
{
// Submit exception details to a server
...
// Display error message for local debugging purposes
Debug.WriteLine(e);
}
}