在onViewCreated中查看为null

时间:2019-05-04 08:53:15

标签: android android-fragments android-view fragment-lifecycle

我正在使用MVP arch开发应用程序。这些部分之一只是3个片段,其中包含一些textviews和edittexts。但是,有时我在第二个片段中会得到空视图(尤其是textview)。我将初始化代码放在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 中的视图不能为空。我在这里做错了什么吗?

1 个答案:

答案 0 :(得分:0)

我想我会在这里回答,以供将来参考。 与片段生命周期无关。 我的问题是因为有Koin注射剂。我为演示者使用了单个{} ,因此它只能创建一个视图。 (正如你在上面看到的那样,我传递了一个view参数) 我将其更改为工厂{} ,并且现在可以正常使用了。