Android Otto库在使用@Produce
方法时会给出以下警告消息。如何避免这条消息?
Note: Validating elements
C:\Users\Me\GroupViewActivity_.java:90: warning: Element ProduceHandler unvalidated by
public GroupViewEvent produceGroup() {
^
C:\Users\Me\GroupInfoFragment_.java:111: warning: Element SubscribeHandler unvalidated by
public void onUpdateGroup(final GroupViewEvent event) {
我使用otto来在Fragment和Activity之间进行通信。活动(在上面,GroupViewActivity.java)有@Produce
方法,子Fragment有@Subscribe
,因此它接收更新。
此外,我正在使用Otto + AndroidAnnotation以及以下指南:https://github.com/excilys/androidannotations/wiki/OttoIntegration
答案 0 :(得分:1)
正如@WonderCsabo所提到的,它在AndroidAnnotations(v3.2)和otto(v1.3.6)的当前版本中运行良好。不必使用otto-2.0.0-SNAPSHOT
版本。