我正在使用LiveData和Databinding,并且在编译时收到10和10的警告,如下所示:
warning: xxx.getValue() is a boxed field but needs to be un-boxed to execute bind:visibility. This may cause NPE so Data Binding will safely unbox it. You can change the expression and explicitly wrap xxx.getValue() with safeUnbox() to prevent the warning
是否可以禁用这些警告,以便在编译时不显示这些警告? 我不想用safeUnbox()包装所有内容。
编辑*:只是要清楚一点。我不是在问如何处理safeUnbox警告或如何使警告不出现。我想知道是否有可能在编译时禁止警告显示在日志输出中。