cdck

Results 4 issues of cdck

库使用的是 3.0.6版本的,我的demo地址:[brvah-demo](https://gitee.com/xlk_gitee/brvah-demo) 为了解决item中的ScrollView无法拖动的问题,我自定义的ScrollView如下: ``` public class MyScrollView extends ScrollView { public MyScrollView(Context context) { super(context); } public MyScrollView(Context context, AttributeSet attrs) { super(context, attrs); } /** * 禁止父容器及上层容器拦截事件 */ @Override...

@princekin-f 请问下大佬有没有修改该参数的方式 ``` params.flags = WindowManager.LayoutParams.FLAG_NOT_TOUCH_MODAL | WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE | WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE; ```

## 问题描述 使用模块化的时候,如果`sample`使用 `runtimeOnly` 的方式依赖`mylibrary`,在`mylibrary`里的Activity的onCreate处配置了` BRV.modelId = BR.m` ,也会导致内容失效,就是item无法显示内容,显示效果相当于空白占位的效果 ## 期望结果 如果使用的是`implementation`依赖则就正常,期望跟该情况一样是需要如何配置 ## 如何复现 [fork的示例地址:https://github.com/cdck/BRV](https://github.com/cdck/BRV) ## 截图 异常堆栈信息或者手机截图/视频(拖拽到输入框即可上传) ![2024-04-10-10-47-40](https://github.com/liangjingkanji/BRV/assets/26270449/4966f456-ed94-43d7-8ae3-b41280d3dc37) 但是数据是有的: ![2024-04-10-10-49-06](https://github.com/liangjingkanji/BRV/assets/26270449/3c50faa8-1631-4916-8c02-2c1c5d5e1e88) ## 版本 - BRV: 1.5.8 - Android: 12 -...