假设我有一个Activity通过Fragment它的 XML 布局嵌入的,例如:
<fragment
android:id="@+id/detaillist"
android:name="com.example.DetailListFragment"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
tools:layout="@android:layout/list_content" />
在FragmentI 中,我依赖于Activity'onCreate方法中发生的事情。在什么Fragment生命周期回调中,我可以确定Activity'sonCreate已完成?