奥托。避免@Produce 验证警告信息
Otto. Avoid @Produce validation warnimg message
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 之间进行通信。 activity(在上面,GroupViewActivity.java)有 @Produce
方法,子片段有 @Subscribe
以便它接收更新。
此外,我使用 Otto+AndroidAnnotation 和以下指南:https://github.com/excilys/androidannotations/wiki/OttoIntegration
正如@WonderCsabo 提到的,它在当前版本的 AndroidAnnotations(v3.2) 和 otto(v1.3.6) 中运行良好。不必使用otto-2.0.0-SNAPSHOT
版本。
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 之间进行通信。 activity(在上面,GroupViewActivity.java)有 @Produce
方法,子片段有 @Subscribe
以便它接收更新。
此外,我使用 Otto+AndroidAnnotation 和以下指南:https://github.com/excilys/androidannotations/wiki/OttoIntegration
正如@WonderCsabo 提到的,它在当前版本的 AndroidAnnotations(v3.2) 和 otto(v1.3.6) 中运行良好。不必使用otto-2.0.0-SNAPSHOT
版本。