Home | History | Annotate | Download | only in seekbar

Lines Matching defs:SeekBar

17 package com.android.musicfx.seekbar;
25 * A SeekBar is an extension of ProgressBar that adds a draggable thumb. The user can touch
27 * Placing focusable widgets to the left or right of a SeekBar is discouraged.
29 * Clients of the SeekBar can attach a {@link SeekBar.OnSeekBarChangeListener} to
34 public class SeekBar extends AbsSeekBar {
48 * @param seekBar The SeekBar whose progress has changed
53 void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser);
57 * to disable advancing the seekbar.
58 * @param seekBar The SeekBar in which the touch gesture began
60 void onStartTrackingTouch(SeekBar seekBar);
64 * to re-enable advancing the seekbar.
65 * @param seekBar The SeekBar in which the touch gesture began
67 void onStopTrackingTouch(SeekBar seekBar);
72 public SeekBar(Context context) {
76 public SeekBar(Context context, AttributeSet attrs) {
80 public SeekBar(Context context, AttributeSet attrs, int defStyle) {
94 * Sets a listener to receive notifications of changes to the SeekBar's progress level. Also
95 * provides notifications of when the user starts and stops a touch gesture within the SeekBar.
99 * @see SeekBar.OnSeekBarChangeListener