android 的unregisterReceiver报错处理

当注册广播时,常会遇到的问题就是重复注销广播处理函数是会报错,而且会让进程奔溃。

一般来说,可以通过一个变量来保存广播处理是否被注销,每当注销时,将它标记为false。如果再次注销时遇到false就不对他进行注销处理。

但是程序比较复杂的时候会比较难控制。可以使用try catch方式捕获错误。


try {
    unregisterReceiver(receiver);
} catch (IllegalArgumentException e) {
    if (e.getMessage().contains("Receiver not registered")) {
        // Ignore this exception. This is exactly what is desired
    } else {
        // unexpected, re-throw
        throw e;
    }
}

你可能感兴趣的:(Android,try,catch)