如何在Xamarin.Android中正确编写自定义UncaughtExceptionHandler [英] How to properly write a custom UncaughtExceptionHandler in Xamarin.Android

查看:98
本文介绍了如何在Xamarin.Android中正确编写自定义UncaughtExceptionHandler的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我要做的就是在我的应用程序上捕获异常,以便将它们发送到服务器.我发现我可以通过基于Java的本机Android代码编写自定义 UncaughtExceptionHandler 来做到这一点,并回答了

All I want to achieve is to catch exceptions on my app so that I can send them to a server. I figured out that I can do this by writing my custom UncaughtExceptionHandler base on native Android code in Java answered here in StackOverflow.

这是我的 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 :

Then I used this class to set the DefaultUncaughtExceptionHandler in my Activity:

// Set the default exception handler to a custom one
Thread.DefaultUncaughtExceptionHandler = new CustomExceptionHandler(
    Thread.DefaultUncaughtExceptionHandler);

我不知道这种方法有什么问题,它确实可以构建,但是在运行时得到了 InvalidCastException .

I don't know what is wrong with this approach, it did build but I got an InvalidCastException on runtime.

我的 CustomExceptionHandler DefaultUncaughtExceptionHandler 具有相同的 Thread.IUncaughtExceptionHandler 接口类型,但是为什么会出现此错误?请赐教.谢谢.

I have the same Thread.IUncaughtExceptionHandler interface types for my CustomExceptionHandler and the DefaultUncaughtExceptionHandler, but why am I getting this error? Please enlighten me. Thank you.

推荐答案

然后再次出现:D这是一个常见错误.如果实现Java接口,则必须继承Java.Lang.Object.

And it strikes again :D This is a common mistake. You have to inherit Java.Lang.Object if you implement Java interfaces.

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);
    }
}

这篇关于如何在Xamarin.Android中正确编写自定义UncaughtExceptionHandler的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆