当我从Navigation.xml过渡到其他片段时,RecyclerView为空白

时间:2019-02-25 05:08:35

标签: android android-fragments kotlin android-recyclerview

我正在使用navigation.xml过渡到其他$arr1 = ['wahyu@email.co.id', 'wahyu@email.co.id']; $arr2 = ['wahyu@email.co.id', 'wahyu@email.co.id']; $arr3 = array_merge($arr1, arr2); 。但是问题是当我过渡到其他fragments并回来时。 fragment中的RecyclerView为空白。我正在使用MVVM结构+ jetpack。制作应用程序,因此我将数据绑定到fragment。有没有一种方法可以防止RecyclerView变成空白?一些示例或提示会很可爱。我希望收到您的来信!

fragment

这是在mainActivity中

<?xml version="1.0" encoding="utf-8"?>
<navigation 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"
            app:startDestination="@+id/navigation_show">

    <fragment
            android:id="@+id/navigation_show"
            android:name="test.ShowFragment"
            android:label="@string/menu_bar_show"
            tools:layout="@layout/layout_show">
    </fragment>
    <fragment
            android:id="@+id/navigation_help"
            android:name="test.HelpFragment"
            android:label="@string/menu_bar_help"
            tools:layout="@layout/layout_help">
    </fragment>

</navigation>

0 个答案:

没有答案