Android注释@EBean重新绑定(上下文上下文)

时间:2015-06-02 11:00:11

标签: android android-annotations

当我使用setRetainInstance(true)作为片段时,使用@Bean注释的字段如下

@Bean
Navigator navigator;
屏幕旋转后,

不会更新活动上下文。

生成的类rebind(Context context)中有方法Navigator_。我必须以这种方式手动调用这个函数吗?

@AfterViews
void afterViews() {
    ((Navigator_) navigator).rebind(getActivity());
}

我认为这不好。对于这种情况可能会有特殊的注释吗?

0 个答案:

没有答案