我正在使用 Jet pack 导航组件,但在片段转换方面遇到了一些问题。我想从 ProfileFragment -> PersonalInfoFragment 实现导航,当用户导航到 PersonalInfoFragment 时,它显示空白屏幕。这是第一次在全新安装时发生。用户重新打开应用后,它就可以正常工作了。
<fragment
android:id="@+id/profileFragment"
android:name="com.spendlee.dev.views.fragment.ProfileFragment"
android:label="ProfileFragment"
tools:layout="@layout/fragment_profile" >
<action
android:id="@+id/navigate_profileFragment_to_personalInfoFragment"
app:destination="@id/personalInfoFragment"/>
</fragment>