INNER CODE UNIT · Java

SimpleSeekBarChangeListener

davideas/FlexibleAdapter · flexible-adapter-app/src/main/java/eu/davidea/common/SimpleSeekBarChangeListener.java:9

public abstract class SimpleSeekBarChangeListener implements SeekBar.OnSeekBarChangeListener {

    /**
     * Notification that the progress level has changed. Clients can use the fromUser parameter
     * to distinguish user-initiated changes from those that occurred programmatically.
     *
     * @param seekBar  The SeekBar whose progress has changed
     * @param progress The current progress level. This will be in the range 0..max where max
     *                 was set by {@link ProgressBar#setMax(int)}. (The default value for max is 100.)
     * @param fromUser True if the progress change was initiated by the user.
     */
    @Override
    public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) {

    }

    /**
     * Notification that the user has started a touch gesture. Clients may want to use this

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…