JQMotee

Results 4 issues of JQMotee

``` if (!(adapter instanceof SwipeItemMangerInterface)) throw new IllegalArgumentException("adapter should implement the SwipeAdapterInterface"); ``` it should be ``` if (!(adapter instanceof SwipeAdapterInterface)) throw new IllegalArgumentException("adapter should implement the SwipeAdapterInterface"); ```

The height of the recyclerview you get by` rView.getHeight()` is inaccurate,when the recyclerview is `wrap_content`,or its parent is scrollview of some kind. It caused the error of `heightOutsideRView` then the...

如果没有scrollview 或者有scrollview但是不滑动,数据正常显示。一旦滑动,数据就会只显示选中行。