繁体   English   中英

RecyclerView.Adapter 使用 viewPager 在 Fragment 中返回空对象引用

[英]RecyclerView.Adapter return null object reference inside Fragment with viewPager

我正在尝试使用 mvvm 架构创建具有视图寻呼机的页面。

所以我想要做的是使用可观察的方法在第一个选项卡的片段内显示 Recycler 视图。

但是当我尝试将内容设置为片段内的适配器时,我得到了

java.lang.NullPointerException: Attempt to invoke virtual method 'void com.xxxx.view.adapter.FoodListAdapter.setFoodList(java.util.List)' on a null object reference 

我的 FragmentStatePagerAdapter 适配器

@Override
    public Fragment getItem(int position) {
        switch (position) {
            case 0:
                Log.d("Food Pager", "get Item");
                FoodListFragment foodListFragment = new FoodListFragment();
                return foodListFragment;
            case 1:
                RestaurantListFragment restaurantListFragment2 = new RestaurantListFragment();
                return restaurantListFragment2;
            case 2:
                RestaurantListFragment restaurantListFragment3 = new RestaurantListFragment();
                return restaurantListFragment3;
            default:
                return null;
        }
    } 

我的活动

private void observeViewModel(final CategoryViewModel categoryViewModel) {
        // Observe Category Data
        categoryViewModel.getCategory().observe(this, new Observer<Category>() {
            @Override
            public void onChanged(@Nullable Category category) {
                // Update UI
                if (category != null) {
                    if (category.foods != null) {
                        startFoodListFragment(category.foods);
                    }
                } else {
                    Log.e(TAG, "Category Data is Null");
                }
            }
        });
    }

    private void startFoodListFragment(List<CategoryQuery.Food> foodList) {
        Log.d("startFoodListFragment", "yolo");
        FoodListFragment foodListFragment = new FoodListFragment();
        foodListFragment.setFoodList(foodList);
    }

所以在我的 Fragment 里面

@Nullable
    @Override
    public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {

        Log.d("Food LIst", "On create VIew");
        View rootView = inflater.inflate(R.layout.fragment_food_list, container, false);

        mRecyclerView = (RecyclerView) rootView.findViewById(R.id.recyclerview_food_list);
        // mLoadingIndicator = (ProgressBar) rootView.findViewById(R.id.food_list_loading_indicator);

        Integer gridColumns = 2;

        Float width = getScreenSize().get("width");

        if (width > 600) {
            gridColumns = 3;
        }

        // Create Pinterest Style RecyclerView
        StaggeredGridLayoutManager layoutManager = new StaggeredGridLayoutManager(gridColumns, StaggeredGridLayoutManager.VERTICAL);
        mRecyclerView.setLayoutManager(layoutManager);

        // Cool. it's Very easy ,but margin on my LinearLayout didn’t seem to work. So here’s a quick fix.
        SpacesItemDecoration decoration = new SpacesItemDecoration(8);
        mRecyclerView.addItemDecoration(decoration);

        mFoodListAdapter = new FoodListAdapter(foodListAdapterOnClickHandler);
        mRecyclerView.setAdapter(mFoodListAdapter);

        return rootView;
    }

@Override
    public void onActivityCreated(@Nullable Bundle savedInstanceState) {
        super.onActivityCreated(savedInstanceState);
        if (mFoodList != null) {
            mFoodListAdapter.setFoodList(mFoodList);
        }
    }

    public void setFoodList(List<CategoryQuery.Food> foodList) {
        Log.d(TAG, "setFoodlist");
        if (foodList != null) {
            mFoodList = foodList;
            mFoodListAdapter.setFoodList(mFoodList);
            // mFoodListAdapter.notifyDataSetChanged();
        }
    }

这是我的适配器的一部分

public void setFoodList(final List<? extends CategoryQuery.Food> foodList) {
        if (this.foodList == null) {
            this.foodList = foodList;
            notifyItemRangeInserted(0, foodList.size());
        }
    }

这是我得到的相关日志

D/Food Pager: get Item
D/Food LIst: On create VIew
D/startFoodListFragment: yolo
D/Food List Fragment: setFoodlist
D/AndroidRuntime: Shutting down VM
E/AndroidRuntime: FATAL EXCEPTION: main

然后错误继续

java.lang.NullPointerException: Attempt to invoke virtual method 'void com.xxx.view.adapter.FoodListAdapter.setFoodList(java.util.List)' on a null object reference

所以有人知道为什么我在onCreateView内部初始化后调用FoodListAdapter时得到空值?

谢谢你的帮助!

日志告诉我们什么?

D/食物寻呼机:获取物品

调用FragmentStatePagerAdapter.getItem(int position)以显示FoodListFragment 这通常意味着Fragment将被添加到屏幕上,因此接下来应该调用它的onCreateView() 实际情况是这样的:

D/食物清单:创建视图

另一方面,我们有一个Observer来监听数据变化。 每次触发时,都会调用startFoodListFragment()

D/startFoodListFragment: yolo

在此方法中,将创建FoodListFragment一个新实例 您尝试通过调用setFoodList()将新数据传递给它

D/食物清单片段:setFoodlist

但是由于这个新实例不会被附加到屏幕上,它的onCreateView()还没有被调用。 所以它的适配器还没有被实例化。 这就是应用程序崩溃的原因:

D/AndroidRuntime:关闭虚拟机 E/AndroidRuntime:致命异常:main

你能做什么?

您应该将数据传递到FoodListFragment的正确实例中。 或者简单地在FoodListFragment注册Observer FragmentActivity一样是 Lifecycle Owner,所以我认为这种方法最适合您。

在您的活动中,您有这个方法startFoodListFragment() ,它创建一个片段并在其上调用setFoodList()方法,该方法在内部将数据设置为适配器。

由于适配器实例是在onCreateView()生命周期方法上创建的,因此在创建对象时不会初始化适配器。 所以那时它将为 null 这就是它抛出NullPointerException的原因。 确保你访问adapter的时候,一定是在onCreateView()方法执行之后,这样你就再也不会得到NPE了!

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM