我在项目中实现了“Android Annotation”。我想用@EBean将引用注入到 FragmentPagerAdapter 类中,但是@EBean只需要一个构造函数,其中最多只有一个类型为context的参数。
但正如您所知,PagerAdapter及其子类具有使用FragmentManager参数作为输入的构造函数。 构建时,会出现此错误:
Error:(23, 1) error: org.androidannotations.annotations.EBean annotated element should have a constructor with one parameter max, of type android.content.Context
如何在这堂课中注入? (我需要注入,因为我使用异步和bean注释)
答案 0 :(得分:0)
很遗憾,由于FragmentPagerAdapter
构造函数,无法用@EBean
标记super
。