XiFanYin

Results 12 comments of XiFanYin

@chaychan [BaseRecyclerViewAdapterHelper的issue](https://github.com/CymChad/BaseRecyclerViewAdapterHelper/issues/2176)希望也同时合并更新一下BaseRecyclerViewAdapterHelper这个库的多类型条目的使用方式!

可能是我没有表达清楚,BaseRecyclerViewAdapterHelper 库的新版本2.9.38中新增的多布局的BaseItemProvide也缺少这两个方法,我不知道BaseRecyclerViewAdapterHelper对应的这个多布局是谁维护,所以跟你说了一下,希望你通知一下维护这一块的人,知道有这个问题

@gyf-dev已经尝试通过设置setOnSystemUiVisibilityChangeListener监听,再次调用隐藏,无效

能坑死人~我是受不了了

最后Tv用的哪个控件去实现的

@JessYanCoding 在一次请求中先读取缓存展示UI,等请求到数据之后再次拿最新数据更新UI的需求目前这个库能满足嘛?

@JessYanCoding 我理解你的意思如下: 假如设置缓存时间设置:永久有效 。 //正常网络请求 Observable patientInfo = RetrofitUtil .getInstance() .create(API.class) .getPatientInfo(1, 2); //读取缓存数据 CacheProviderUtils .getInstance() .using(Provider.class) .getPatientInfo(patientInfo, new DynamicKey("eee"), new EvictDynamicKey(false)) .compose(RxSchedulers.io_main()) .compose(bindUntilEvent(ActivityEvent.DESTROY)) .subscribe(new BaseObserver() { @Override public void...

@JessYanCoding 我这个英语水平怕把作者气死也表达不清楚,所以你沟通一下子。如果你觉得这个想法可以,可以跟作者沟通一下。毕竟你们大神之间的交流比较顺畅!

好的,理解你,谢了!你的mvpArms运用dagger2封装的真的很巧妙,注入的也非常巧妙。巧妙的已经没法用言语描述了,感谢刷新了我的对Dagger2的认识

我看了一下源码进行了如下修改: MultipleBluetoothController类方法: public synchronized void disconnect(BleDevice bleDevice) { if (isContainDevice(bleDevice)) { getBleBluetooth(bleDevice).disconnect(); } } 修改为: public synchronized void disconnect(BleDevice bleDevice) { if (isContainDevice(bleDevice)) { getBleBluetooth(bleDevice).disconnect(); } else { BleBluetooth a...