Java.lang.IllegalStateException: The application PagerAdapter changed the adapter's contents without calling PagerAdapter#notifyDataSetChanged android

前端 未结 6 1553
花落未央
花落未央 2021-02-08 10:00

I am trying to use a static class to pass value to a view instead of using intent as I have to pass a large amount of data. Sometimes I get this error and couldn\'t find out wha

6条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-02-08 10:33

    try using the following way:

    mList=new ArrayList();
            mList.addAll(DataResult.getInstance().getData());
            DataResult.getInstance().resetData();
    

提交回复
热议问题