hehonghui / AndroidEventBus

A lightweight eventbus library for android, simplifies communication between Activities, Fragments, Threads, Services, etc.
Apache License 2.0
1.61k stars 392 forks source link

poststick不起作用,原因是代码被注释了,请释放 #57

Open yurenmatou opened 6 years ago

yurenmatou commented 6 years ago

image

shinobu59 commented 6 years ago

sticky事件是可以用的具体如下: 注册时使用 image

发送时使用 image

其余的和直接post用法一样,Sticky事件消耗完需要手动清除掉,不然会重复调用

image

bigananas commented 5 years ago
 * 发送黏性消息事件,指定tag (每注册一次就能接受到一次,而且每次要清除栈否则会接受多个)
 * EventBus.getDefault().registerSticky(this);
 * EventBus.getDefault().removeStickyEvent(EventEntity.DiySetPreEntity.class, EventBusTags.DIY_SET_PREVIEW);
is1988 commented 1 year ago

sticky事件是可以用的具体如下: 注册时使用 image

发送时使用 image

其余的和直接post用法一样,Sticky事件消耗完需要手动清除掉,不然会重复调用

image

我是按照这样写了 但是只有第一次起作用,后面就失效了