Android学习笔记————SeekBar

先看下文档中是怎么表述SeekBar这个组件的。
A SeekBar is an extension of ProgressBar that adds a draggable thumb. The user can touch the thumb and drag left or right to set the current progress level or use the arrow keys. Placing focusable widgets to the left or right of a SeekBar is discouraged.
翻译:SeekBar是ProgressBar的扩展,增加了拖拽的功能。用户可以通过拖动进度条的位置来设置进度。并且最好是不要在SeekBar的左右放置可以获取焦点的其他组件。
从继承关系我们可以看到:

java.lang.Object
   ↳ android.view.View
     ↳ android.widget.ProgressBar
       ↳ android.widget.AbsSeekBar
         ↳ android.widget.SeekBar
SeekBar是ProgressBar的子类,那么也就拥有了ProgressBar的功能,其主要的特点还是上面所说的具有拖动功能,可以利用这个功能设置我们需要的进度。
那么如何设置进度条拖动的监听呢?很简单,android为我们提供了一个很简单的方法:
setOnSeekBarChangeListener(SeekBar.OnSeekBarChangeListener l)
通过这个方法就可以方便的设置了。
那么我们还需要了解一下SeekBar.OnSeekBarChangeListener这个接口了。
这个接口中定义了三个方法:
1.abstract void onProgressChanged(SeekBar seekBar,int progress,boolean fromUser)
Notification that the progress level has changed
提示我们进度已经改变。
2.abstract void onStartTrackingTouch(SeekBar seekBar)
Notification that the user has start a touch gesture.
提示我们用户已经开始触摸手势以改变进度条的进度。

3.abstract void onEndTrackingtouch(SeekBar seekBar)
Notification that the user has finished a touch gesture
提示我们用户已经开始完成触摸手势。

了解了文档之后,SeekBar的用法就变的很清晰了,只需要在OnSeekBarChangeListener中相应的方法中进行处理,即可完成SeekBar的拖动了。

你可能感兴趣的:(android,user,文档,扩展,extension)