HelloCsl

Results 17 comments of HelloCsl

```java class TestActivity : AppCompatActivity() { var mGif: GifDrawable? = null @SuppressLint("CheckResult") override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContentView(R.layout.activity_test) mGif = GifDrawable(resources, R.raw.test_gif) Observable.interval(10, TimeUnit.MILLISECONDS) .compose(RxLifecycleCompact.bind(this).withObservable()) .observeOn(AndroidSchedulers.mainThread()) .subscribe { tick...

![test_gif](https://user-images.githubusercontent.com/5364385/57755887-955def00-7724-11e9-8d5a-55b44bde7746.gif)

Can you reproduce this problem? @koral--

@handsometong 权限是有的,不然也不能执行,我用 7.0 的机子,你用的什么版本?

@AbdulRaufJutt Just copy the source code and add the setter method

It can not be able to show larger number of items since this lib display all item at a times.sorry.

@zhangguagyi 目前没有这个功能,但是可以自己修改

在判断到是RecycleVIew的时候直接断定为LinearLayoutManager这样不太好,抽象Behavior的目的是为了通用,而不应该限制RecycleView的LayoutManager,虽然这里只是个小DEMO,但是也不太妥