EventBus使用方法2

2018-09-21  本文已影响19人  我叫杨毅

1.发送页面

EventBus.getDefault().post("WXPay");

2.接收页面

(1)

// 注册EventBus

EventBus.getDefault().register(this);

(2)

// 取消注册EventBus

EventBus.getDefault().unregister(this);

(3)

public void onEventMainThread(String type) {

    // 接收到发布者发布的事件后,进行相应的处理操作

            if ("WXPay".equals(type)) {

        queryPaymentState(orderNum, "WXPay", GoodsId, addressId);

        Log.e(TAG, "onEventMainThread: 111111111111111");

}

}

上一篇下一篇

猜你喜欢

热点阅读