美文网首页
EventBus使用方法2

EventBus使用方法2

作者: 我叫杨毅 | 来源:发表于2018-09-21 11:32 被阅读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");

    }

    }

    相关文章

      网友评论

          本文标题:EventBus使用方法2

          本文链接:https://www.haomeiwen.com/subject/cqsanftx.html