-
Notifications
You must be signed in to change notification settings - Fork 143
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
为什么采用Handler的机制 #20
Comments
在处理View和手势之间的关系的时候,习惯性的用runnable和handler来处理了,滑动返回项目在最初阶段也是有其他的思路的,不过现在看来确定是可以不用handler的,这个点确实可以优化。 |
你能详细描述一下遇到的 “因为Handler和事件分发有时候会造成时序的混乱” ,这种情况吗? |
这个是在我优化了滑动触发后发生的。 |
因为改得比较苦恼,所以就去除了Handler. |
Handler处理Message肯定是按序处理的,但是想要响应返回按键确定会有一定的问题,这个是我正在优化的点。 |
基于该库做了一些修改,例如加入滑动触发的判断.目前的情况是左边的一些按钮无法触发.
改完后发现因为Handler和事件分发有时候会造成时序的混乱.直接把SwipeWindowHelper去除了继承Handler.
想问下当时是基于什么情况下考虑使用Handler.
The text was updated successfully, but these errors were encountered: