Amiee Robot
Amiee Robot
Sorry for late response, I am busy these days, so I don't have much time to take care of this project, but I will add your pull request later. Or...
hi, if you use source code in your project, a quick fix would be: ``` private void tintDrawable(Drawable drawable, int color) { if (mIconTint) { drawable.mutate().setColorFilter(color, PorterDuff.Mode.SRC_IN); // drawable =...
> 大佬 JXPagerSmoothView可不可以让悬浮条停在指定位置? 提了个 [pull request](https://github.com/pujiaxin33/JXPagingView/pull/366),你看看是不是你要的效果。
有个 workaround: 监听输入框开始输入事件,设置当前列表不能滚动,后面键盘消失恢复列表滚动,具体怎么做可以看自己的需求。 ``` extension SmoothViewController: UITextFieldDelegate { func textFieldDidBeginEditing(_ textField: UITextField) { let scrollView = paging.listDict[segmentedView.selectedIndex]?.listScrollView() scrollView?.isScrollEnabled = false } } ``` 另一个 [workaround](https://github.com/pujiaxin33/JXPagingView/pull/366/commits/d0b00208a5faab941a7c0569b9bcf8799ea1ab71)。