我想知道何时将@ViewById
注释的视图注入AndroidAnnotations。基本上,我想知道在onResume期间访问这些视图之一是否安全?我认为它们是在onCreate期间注入的,但希望确认。
谢谢。
答案 0 :(得分:3)
准确确定何时发生注入的最简单方法是检查AndroidAnnotations生成的代码。对于您的示例,我做了一个简单的“活动和片段”,如下所示:
@EActivity(R.layout.activity_main)
public class MainActivity extends AppCompatActivity {
@ViewById(R.id.textView)
TextView textView;
@AfterViews
public void activityTestMethod() {
}
}
@EFragment(R.layout.fragment_main)
public class MainFragment extends Fragment {
@ViewById(R.id.imageView)
ImageView imageView;
@AfterViews
public void fragmentTestMethod() {
}
}
,然后运行./gradlew app:assembleDebug
来强制AndroidAnnotations生成相应的类MainActivity_
和MainFragment_
。让我们先来看MainActivity_
(忽略不相关的代码):
public final class MainActivity_
extends MainActivity
implements HasViews, OnViewChangedListener
{
@Override
public void onCreate(Bundle savedInstanceState) {
OnViewChangedNotifier previousNotifier = OnViewChangedNotifier.replaceNotifier(onViewChangedNotifier_);
init_(savedInstanceState);
super.onCreate(savedInstanceState);
OnViewChangedNotifier.replaceNotifier(previousNotifier);
setContentView(R.layout.activity_main);
}
private void init_(Bundle savedInstanceState) {
OnViewChangedNotifier.registerOnViewChangedListener(this);
}
@Override
public void setContentView(int layoutResID) {
super.setContentView(layoutResID);
onViewChangedNotifier_.notifyViewChanged(this);
}
@Override
public void onViewChanged(HasViews hasViews) {
this.textView = hasViews.internalFindViewById(R.id.textView);
activityTestMethod();
}
}
导致绑定我们的视图并调用我们的@AfterViews
方法的事件序列如下:
onCreate
中,MainActivity_
实例被注册为OnViewChangedNotifier
。onCreate
呼叫setContentView
。setContentView
调用notifyViewChanged
,这会触发对onViewChanged
的(同步)调用。onViewChanged
绑定所有用@ViewById
注释的字段,然后调用所有用@AfterViews
注释的方法。因此,@ViewById
注释的视图被绑定,并且在调用onCreate
之后可以使用,并且@AfterViews
注释的方法将在onCreate
的末尾执行。以及其他任何Activity生命周期方法之前。
MainFragment_
的故事与此类似:
public final class MainFragment_
extends com.stkent.aatest.MainFragment
implements HasViews, OnViewChangedListener
{
@Override
public void onCreate(Bundle savedInstanceState) {
OnViewChangedNotifier previousNotifier = OnViewChangedNotifier.replaceNotifier(onViewChangedNotifier_);
init_(savedInstanceState);
super.onCreate(savedInstanceState);
OnViewChangedNotifier.replaceNotifier(previousNotifier);
}
private void init_(Bundle savedInstanceState) {
OnViewChangedNotifier.registerOnViewChangedListener(this);
}
@Override
public void onViewCreated(View view, Bundle savedInstanceState) {
super.onViewCreated(view, savedInstanceState);
onViewChangedNotifier_.notifyViewChanged(this);
}
@Override
public void onViewChanged(HasViews hasViews) {
this.imageView = hasViews.internalFindViewById(R.id.imageView);
fragmentTestMethod();
}
}
导致绑定我们的视图并调用我们的@AfterViews
方法的事件序列如下:
onCreate
中,MainFragment_
实例被注册为OnViewChangedNotifier
。onViewCreated
调用notifyViewChanged
,这会触发对onViewChanged
的(同步)调用。onViewChanged
绑定所有用@ViewById
注释的字段,然后调用所有用@AfterViews
注释的方法。因此,@ViewById
注释的视图被绑定,并且在调用onViewCreated
之后可以使用,并且@AfterViews
注释的方法将在onViewCreated
的末尾执行。以及其他任何Fragment生命周期方法之前。
在我们的两个示例中,所有视图绑定都是在生命周期方法中执行的,该方法比onResume早得多,因此您可以安全地在其中访问它们:)