当我使用setRetainInstance(true)
作为片段时,使用@Bean
注释的字段如下
@Bean
Navigator navigator;
屏幕旋转后,不会更新活动上下文。
生成的类rebind(Context context)
中有方法Navigator_
。我必须以这种方式手动调用这个函数吗?
@AfterViews
void afterViews() {
((Navigator_) navigator).rebind(getActivity());
}
我认为这不好。对于这种情况可能会有特殊的注释吗?