小coder
小coder
public void setTags(String... tags) { removeAllViews(); for (final String tag : tags) { appendTag(tag); } if (isAppendMode) { appendInputTag(); } } 最后又appendInputTag(),所以并没有彻底清空, 我觉得可以直接在onDestroy中调用mTagGroup.removeAllViews().
I have solved this issue. just add: `case MotionEvent.ACTION_CANCEL: { // same as MotionEvent.ACTION_UP } ` The reason is: When TagGroup within ScrollView, the TagView's MotionEvent.ACTION_MOVE and MotionEvent.ACTION_UP will be...
首先非常感谢阿里这个开源项目。 楼上的问题我今天用了也是这样,#53这个问题感觉并没有解决,右边和上边都有一点间距,希望阿里作者用实际图片测试一下。下面是我的用法:
来回滑复用多次请求多次,测了下鸿洋的demo确实如此。有时候感觉鸿洋虽然屌,但是这些项目没有完善好就发上来,看看还可以学习思路,如果不看源码直接用在项目里麻烦就大了,反而起到了副作用。对比下https://github.com/nostra13/Android-Universal-Image-Loader,这个才可以算真正的成功。
@kuwork 那就不该提供:compile 'com.zhy:base-rvadapter:3.0.3'
我这是最后一个Item不是ViewPager,是LinearLayout包裹TitleLayout+ChildRecyclerView,ChildRecyclerView卡顿明显,源码我的水平看不太懂。。暂时没找到解决方案