如何在 Android Studio 中配置 Assert/Check 方法?
我使用 Mosby MVP 框架,在 Presenter 中我经常使用这种模式:
if (isViewAttached()) {
getView().someViewMethod();
}
getView()
标记为@Nullable
,所以 Android Studio 向我显示警告method invocation 'someViewMethod' could produce NullPointerException
。它不明白我以前检查过它。
我找到了关于配置断言/检查方法的绝妙答案:https ://stackoverflow.com/a/19319326/1263771
但是在新鲜的Android Studio中不能这样做,因为它有不同的设置界面。那么,如何在最后一个 Studio 中做到这一点呢?