Solve!!!
When I was performing some content display, I found that sometimes the display page always crashed
There is no log,but I find An error is reported every time an exception occurs "exiting due to SIG_DFL handler for signal 11",Therefore, I discovered that it should be a task that requires drawing and rendering that led to resource exhaustion and insufficient performance triggering this issue. Then I continued to track the problem and finally found that the framework would continuously redraw in real time. If it was a large resource table thief, it would throw serious performance problems and eventually lead to a crash. Therefore, I customized the redraw logic and rewrote the listener in the added data. When the user appeared, The redrawing is triggered only when the touch or slide operation is performed. Moreover, I have added LRU and glide to cache the operations for displaying most images. This problem has been solved. I hope it will be helpful to you