Я занимаюсь разработкой приложения с использованием MVP arch. Один из разделов - это всего лишь 3 фрагмента с некоторыми текстовыми представлениями и правками. Однако иногда я получаю нулевые представления (особенно 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>
Мой фрагмент (кстати, используя инъекцию Коина):
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 имеет значение NULL, но если приложение запускается в первый раз и отображается этот фрагмент, представление может быть отображено. Проблема возникает только тогда, когда я пытался вернуться к фрагменту, используя FragmentTransaction.replace.
Я думал, что представления не могут быть нулевыми в onViewCreated . Что-то, что я здесь не так сделал?