I\'m currently trying to implement SeekBarPreference class using http://android-journey.blogspot.com/2010/01/for-almost-any-application-we-need-to.html tutorial with Relativ
Slider works in tutorial by changing onProgressChanged to
public void onProgressChanged( SeekBar seekBar, int progress, boolean fromUser )
{
progress = Math.round( ( (float) progress ) / interval ) * interval;
persistInt(progress);
callChangeListener( progress );
seekBar.setProgress( progress );
this.monitorBox.setText( progress + "" );
updatePreference( progress );
}