Как получить доступ к фрагменту, который определен в другом представлении? - PullRequest
0 голосов
/ 19 сентября 2019

У меня есть фрагмент, который определен в activity_main.xml.Мне нужно сослаться на него внутри другого класса, который использует другое представление.У меня есть фрагмент, определенный в activity_main.xml, потому что мне нужно, чтобы он был постоянным и был прикреплен к нижней части основного экрана.В противном случае я бы определил его в представлении, в котором мне нужно сослаться на него.

Я пытался определить основную деятельность внутри своего класса и использовал supportFragmentManager.findFragmentById(R.id.bottom_sheet_view), но продолжал возвращать ошибку:

null cannot be cast to non-null type com.ds.base.fragments.BottomTimeSheet
        at com.ds.base.fragments.SessionTimeFragment.onCreateVie

Вот фрагмент того, как я пытаюсь создать экземпляр фрагмента внутри класса:

    override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?): View? {
        val view = inflater.inflate(R.layout.fragment_session_time,container, false)

        val main = activity as MainActivity
        var frag = main.supportFragmentManager.findFragmentById(R.id.bottom_sheet_view) as BottomTimeSheet

        if(frag == null){
            frag = BottomTimeSheet()
        }
        bottomTimeSheet = frag
        .
        .
        .
        .

activity_main.xml:

<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <androidx.constraintlayout.widget.ConstraintLayout
        android:id="@+id/constraintLayout"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <fragment
            android:id="@+id/nav_host_fragment"
            android:name="androidx.navigation.fragment.NavHostFragment"
            android:layout_width="match_parent"
            android:layout_height="0dp"
            app:defaultNavHost="true"
            app:layout_constraintBottom_toTopOf="@+id/bottom_navigation_view"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent"
            app:navGraph="@navigation/base_nav_graph"
            />

        <com.google.android.material.button.MaterialButton
            android:id="@+id/bay_number_status"
            android:layout_width="wrap_content"
            android:layout_height="0dp"
            android:background="@color/white_regular"
            android:fontFamily="@font/parkinson_medium"
            android:text="---&#10;Bay #"
            android:textColor="@color/black_regular"
            android:textSize="15sp"
            app:itemBackground="@color/white_regular"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintHeight_percent=".1"
            app:layout_constraintHorizontal_bias="1.0"
            app:layout_constraintRight_toRightOf="parent"
            style="@style/Widget.MaterialComponents.Button.TextButton"
            />

        <fragment
            android:id="@+id/bottom_navigation_view"
            android:name="com.ds.base.fragments.BottomNavigationFragment"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            tools:layout="@layout/fragment_bottom_navigation"
            />

        <fragment
            android:id="@+id/bottom_sheet_view"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:name="com.ds.base.fragments.BottomTimeSheet"
            app:layout_constraintTop_toBottomOf="parent"
            app:layout_constraintEnd_toEndOf="parent"
            tools:layout="@layout/bottom_sheet"/>


    </androidx.constraintlayout.widget.ConstraintLayout>

</androidx.coordinatorlayout.widget.CoordinatorLayout>

Ответы [ 2 ]

1 голос
/ 19 сентября 2019

Вы ищете фрагмент слишком рано в жизненном цикле активности.onCreateView() фрагмента вызывается перед завершением действия onCreate().Переместите код, который пытается получить ссылку на другой фрагмент, в onActivityCreated().

1 голос
/ 19 сентября 2019

Как сказал Tenfour04, вы должны получить доступ к представлению после создания текущего фрагмента в onActivityCreated или onViewCreated.Или вы также можете установить тег для своего фрагмента и затем попробовать getFragmentByTag.Надеюсь, это поможет.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...