onViewCreated 中的视图为空

views null in onViewCreated

我正在使用 MVP 架构开发应用程序。其中一个部分只有 3 个片段,其中包含一些文本视图和编辑文本。但是,有时我会在第二个片段中得到空视图(尤其是文本视图)。我将初始化代码放在 onViewCreated / onActivityCreated 中,但它仍然无法正常工作。

这是我的xml

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fillViewport="true"
        android:background="@color/colorBackground">

<androidx.constraintlayout.widget.ConstraintLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">

    <LinearLayout
            android:id="@+id/ll_header"
            app:layout_constraintTop_toTopOf="parent"
            android:gravity="center"
            android:background="@color/colorPrimaryLight"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">
        <androidx.appcompat.widget.AppCompatTextView
                android:id="@+id/tv_initialName"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginTop="@dimen/profile_title_margin"
                android:layout_marginBottom="@dimen/profile_title_margin"
                android:textColor="@android:color/white"
                android:textSize="@dimen/profile_title_textSize"
                android:paddingTop="@dimen/profile_title_padding_topBottom"
                android:paddingBottom="@dimen/profile_title_padding_topBottom"
                android:paddingRight="@dimen/profile_title_padding_leftRight"
                android:paddingLeft="@dimen/profile_title_padding_leftRight"
                android:background="@drawable/bg_profiletitlename"
        />
    </LinearLayout>

    <androidx.recyclerview.widget.RecyclerView
            app:layout_constraintTop_toBottomOf="@id/ll_header"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"/>
</androidx.constraintlayout.widget.ConstraintLayout>

我的片段(顺便说一句,我正在使用 Koin 注入):

 private val presenter:ProfilePresenter by inject{ parametersOf(this) }

override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?): View? {
    return inflater.inflate(R.layout.fragment_profile,container,false)
}


override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
    presenter.initNames()
}

override fun setUserInitialChar(initialChar: Char) {
    tv_initialName.text = initialChar.toString()
}

我的主持人:

override fun initNames() {
    view.setUserInitialChar(AppPreferences.customer.username.capitalize().first())
}

它给我的错误是我的 tv_initialName 是空的,但是如果应用程序是第一次启动并且显示了该片段,则可以显示视图.仅当我尝试使用 'FragmentTransaction.replace'.

导航回片段时才会出现此问题

我认为 onViewCreated 中的视图不能为空。我在这里做错了什么吗?

我想我会在这里回答以供将来参考。 与片段生命周期无关。 我的问题是因为 Koin 注入。我为我的演示者使用 single{},所以它只会创建一次视图。 (正如你在上面看到的,我传入了一个视图参数) 我将其更改为 factory{},现在工作正常。