We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
<com.warkiz.widget.IndicatorSeekBar xmlns:app="http://schemas.android.com/apk/res-auto" android:id="@+id/seekbar" android:layout_width="match_parent" android:layout_height="@dimen/dimen_24" app:isb_seek_smoothly="true" app:isb_show_indicator="none" app:isb_show_thumb_text="false" app:isb_show_tick_marks_type="square" app:isb_show_tick_texts="false" app:isb_thumb_adjust_auto="false" app:isb_thumb_drawable="@drawable/trade_seekbar_red" app:isb_tick_marks_color="@color/selector_tick_marks_color_red" app:isb_tick_marks_size="6dp" app:isb_ticks_count="5" app:isb_track_progress_color="@color/tagColor_red" app:isb_track_progress_size="2dp" />
The text was updated successfully, but these errors were encountered:
可能是view太复杂嵌套很深的缘故,加了很多延迟后发现seekbar在来回抖动 查看源码发现onMeasure 方法中一直在refreshSeekBarLocation 加入判断后解决 if (!mIsTouching) { initSeekBarInfo(); refreshSeekBarLocation(); }
Sorry, something went wrong.
@insomniastay 感谢反馈,有时间会尝试重现这个issue.
@warkiz 确实是这样的,在回调中操作其他view会抖动。 @insomniastay 非常感谢你的方案。
No branches or pull requests
The text was updated successfully, but these errors were encountered: