Android SeekBarPreference

后端 未结 3 947
独厮守ぢ
独厮守ぢ 2020-12-06 18:49

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

3条回答
  •  Happy的楠姐
    2020-12-06 19:30

    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 );
    }
    

提交回复
热议问题