AnderWeb / discreteSeekBar

Apache License 2.0
2.11k stars 402 forks source link

OnProgressChangeListener lifecycle from DiscreteSeekBar #69

Open srolemberg opened 8 years ago

srolemberg commented 8 years ago

I'm using the interface and I'm a little confused about the life cycle of method calls.

In a moment, if you select the indicator of progress, the events occur in this way:

1 onStartTrackingTouch 2 onProgressChanged 3 onStopTrackingTouch

In a second step, if you select any other part of the component, the events occur in this way:

1 onProgressChanged 2 onStartTrackingTouch 3 onStopTrackingTouch

Seems strange behavior since the 'Touch' is always expected as action, I assume.

This behavior is really expected?