假设我有一个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" />
在Fragment
I 中,我依赖于Activity
'onCreate
方法中发生的事情。在什么Fragment
生命周期回调中,我可以确定Activity
'sonCreate
已完成?