EventBus使用方法2

```

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)