Giter VIP home page Giter VIP logo

Comments (8)

xiong-it avatar xiong-it commented on May 22, 2024 6

I add a headview for RecyclerView and use notifyItemRangeChanged(0, mDatas.size()) in adapter,this problem appeared. finally, I fixed it by change notifyItemRangeChanged(0, mDatas.size()) to notifyItemRangeChanged(1, mDatas.size()), it worked fine.

from recyclerview-animators.

ypresto avatar ypresto commented on May 22, 2024 3

Smooth scrolling before animation finishes randomly causes this crash.

from recyclerview-animators.

bradroid avatar bradroid commented on May 22, 2024 3

@ypresto Hello, I can see that your fix is included in library version 2.2.6, but I'm using version 2.2.7 of the library and can still see this issue happening.
I'm not using any headers or footers, just a homogeneous list.
When replacing data, I always clear all the items like this in my adapter:

  data.clear();
  data.addAll(newData);

Where data is a List of items.
I do use smoothScrollToPosition after updating the items.

I also use DiffUtil to calculate changes in my adapter and usually, everything works fine, but in very rare cases it crashes with java.lang.IllegalArgumentException: Called attach on a child which is not detached. I have no how to reproduce it, I only see a few % of users getting this on my crash reporting tool.

from recyclerview-animators.

indiascope avatar indiascope commented on May 22, 2024 1

I also use header with Recyclerview. when i app item at 1 position because at 0 position header is present but when i add item at 1 position .i get new data added at 2 position instead of 1 position in recyclerview. so i try to add item at 0 position and notifyItemRangeChanged to start from 1. still my app crash.

if (!userInfoList.contains(peopleDetailInfo)) {
userInfoList.add(0,peopleDetailInfo);
notifyItemInserted(0);
notifyItemRangeChanged(1,userInfoList.size());
}

from recyclerview-animators.

hbb20 avatar hbb20 commented on May 22, 2024

Hi @wasabeef , Can you show the code? If your code is on gitHub and open, share repo link.

from recyclerview-animators.

mshearer123 avatar mshearer123 commented on May 22, 2024

Hi,

Sorry I can't, I put together a sample app to show the crash, but it does happen so I guess something else is going on in our code.

from recyclerview-animators.

rjrjr avatar rjrjr commented on May 22, 2024

Related, with a repro case. Can't promise it's the same issue, but the symptom is the same.

https://code.google.com/p/android/issues/detail?id=172416

from recyclerview-animators.

swkfx avatar swkfx commented on May 22, 2024

@xiong-it thanks

from recyclerview-animators.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.