防止 SeekBar 移动超过动态点
我需要两个 SeekBar 来设置最小值和最大值,并且每个 SeekBar 上的拇指不能移过另一个。有没有办法禁止将 SeekBar 移过特定点?
I need two SeekBars for setting a minimum and maximum, and the thumb on each SeekBar cannot move past the other. Is there a way to disallow moving the SeekBar past a specific point?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
自己找到了解决方案:在
SeekBar.OnSeekBarChangeListener.onProgressChanged()
方法中,只需将进度设置为正确的值,在本例中与其他SeekBar
相同Found the solution myself: in
SeekBar.OnSeekBarChangeListener.onProgressChanged()
method, just set the progress to a correct value, which in this case is the same as the otherSeekBar