Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
LocalBroadcastManager是否保证注册接收者的调用顺序?
指望他们总是按照注册的顺序被调用会很方便。API文档似乎没有说,但也许我错过了一些东西。
LocalBroadcastManager 是否保证注册接收者的调用顺序?
没有任何记录的方式。这并不奇怪,因为除了专门使用有序广播机制之外,常规广播不保证任何顺序。
通过眼球,当前的实现建议应该根据动作名称按照添加接收器的顺序发送本地广播。但是,我不会指望这种行为。