android 常用库的地址--dialog,recycler
android 弹出框 https://github.com/li-xiaojun/XPopup
android RecyclerViewAdapter https://github.com/CymChad/BaseRecyclerViewAdapterHelper
自定义view:可以学习鸿洋的: https://blog.csdn.net/lmj623565791/article/details/24252901
android Pdf预览框架:https://github.com/voghDev/PdfViewPager
EventBus :https://github.com/greenrobot/EventBus
https://blog.csdn.net/qq_34902522/article/details/84890474
EventBus 是一个开源库,它利用发布/订阅者者模式来对项目进行解耦。它可以利用很少的代码,来实现多组件间通信。
- 一个部分是Subscriber,需要在Subscriber类中进行register和unregister操作。
- 一部分是在Subscriber中需要创建一个方法来接收事件信息,
- 最后一部分就是在需要发送事件的环境使用post方法来发送事件信息