Home | History | Annotate | Download | only in widget

Lines Matching defs:SeekBar

27  * A SeekBar is an extension of ProgressBar that adds a draggable thumb. The user can touch
29 * Placing focusable widgets to the left or right of a SeekBar is discouraged.
31 * Clients of the SeekBar can attach a {@link SeekBar.OnSeekBarChangeListener} to
36 public class SeekBar extends AbsSeekBar {
50 * @param seekBar The SeekBar whose progress has changed
55 void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser);
59 * to disable advancing the seekbar.
60 * @param seekBar The SeekBar in which the touch gesture began
62 void onStartTrackingTouch(SeekBar seekBar);
66 * to re-enable advancing the seekbar.
67 * @param seekBar The SeekBar in which the touch gesture began
69 void onStopTrackingTouch(SeekBar seekBar);
74 public SeekBar(Context context) {
78 public SeekBar(Context context, AttributeSet attrs) {
82 public SeekBar(Context context, AttributeSet attrs, int defStyle) {
96 * Sets a listener to receive notifications of changes to the SeekBar's progress level. Also
97 * provides notifications of when the user starts and stops a touch gesture within the SeekBar.
101 * @see SeekBar.OnSeekBarChangeListener
126 event.setClassName(SeekBar.class.getName());
132 info.setClassName(SeekBar.class.getName());