houyinyu

Results 5 issues of houyinyu

看了issues,好像有很多人也遇到了,并且大神好像已经解决并提交到了dev,希望能尽快更新到2.0.3新版本上 ![1592635739(1)](https://user-images.githubusercontent.com/20554445/85195452-3c885f00-b305-11ea-9a21-ae69b453bfaf.jpg)

后台返回的值为null,然后存进数据库中的值也为null,请问该怎么把所有这个值为null的数据查询出来。

1.点击一级列表item,获取二级列表数据; 2.设置二级列表adapter,使用setList更新adapter。 至此,只要调用过一次setList,就会导致源数据的二级数据错乱。

建议在BottomDialog的 removeMaskView() 方法中,移除maskView和异常后对maskView置空,避免内存泄露: ``` protected void removeMaskView() { if (maskView == null) { DialogLog.print("mask view is null"); return; } try { activity.getWindowManager().removeViewImmediate(maskView); maskView=null; DialogLog.print("dialog remove mask view"); } catch (Throwable...