大杨

Results 5 issues of 大杨

![bug](https://user-images.githubusercontent.com/58157031/175761079-edf310bb-9e30-4871-871b-d70e00e59d77.png) 当xml中使用gif图片作为Drawable时,即使app退到后台,gif解码线程也一直在工作(如图中所示),导致cpu占用一直在10%左右,app耗电增加,是否可以结合lifeCycle对这一块进行适配。

`onPageSelected` is empty implemention Add below code in LinePagerIndicator can fix but no anim ```java @Override public void onPageSelected(int position) { PositionData current = FragmentContainerHelper.getImitativePositionData(mPositionDataList, position); float leftX; float rightX;...

怎么样能够支持jar.original?

在bottomsheetdialog中把stv作为标题+返回,如下图效果 ![Image](https://github.com/user-attachments/assets/21e3f4e1-73f0-41e8-acaf-f9324b707121) 点drawable1的时候,关闭弹窗,会触发两次点击回调。查了下GPT貌似是系统级的问题: ``` 原因剖析:为什么 Dialog 中会出现 ACTION_CANCEL? 在 Dialog 中触发 ACTION_CANCEL 的原因可能包括: Dialog 在 ACTION_UP 后立刻被关闭 如果你在 ACTION_UP 时调用了 dismiss(),那么 View 被从窗口移除(Detached),Android 系统会自动发一个 ACTION_CANCEL 作为善后。 ``` 断点发现第一次回触发ACTION_UP,紧接着会跟一个ACTION_CANCEL,也许你需要处理这个问题 ![Image](https://github.com/user-attachments/assets/eb3c6816-1262-4bd7-862b-522ab8afbf05) ![Image](https://github.com/user-attachments/assets/9c148890-0882-49d3-81c8-bfb783807d8f)