發布事件

public class Other {

    ...
    private void sendEvent() {
        /* 發布事件 */
        EventBus.getDefault().post(new Myevent ("Hello Ameng"));
    };
    ...

}