개발 공부/Android
[Android Kotlin] RxBus - RxJava 전역 Callback 구현하기
1. RxJava gracle(Module) 추가 dependencies { implementation 'io.reactivex.rxjava3:rxandroid:3.0.0' implementation 'io.reactivex.rxjava3:rxjava:3.0.7' } 2. RxBus Object 생성 object RxBus { private val publisher = PublishSubject.create() fun publish(event: Any) { publisher.onNext(event) } fun listen(eventType: Class): Observable = publisher.ofType(eventType) } 3. 이벤트 관리 클래스 생성 자신이 필요에 맞게 콜백 클래스를 생성해준다..
2022. 9. 30. 23:14