I have a big problem with my app. It crashes and I don\'t know why.
In my app I have a Activity with a listview and a customlistviewa
As I still need to support everything down to Android version 9, neither android:transitionGroup="true" nor using TransitionListener would work for me. I could prevent the problem by disabling hardware acceleration on Activity level:
Disabling it on a view level didn't work for me, but might work for others:
myView.setLayerType(View.LAYER_TYPE_SOFTWARE, null);