For a lock/unlock system I use the onStartTrackingTouch and onStopTrackingTouch methods. And testing, I don’t understand one thing:
public void onStartTrackingTouch(SeekBar seekBar) {
Log.d(TAG,"Progress: "+seekBar.getProgress());
}
The first value is always zero.
Why? I need the real value!
Can anybody help me?
Thanks in advance.
I’ve changed my idea, finally i’ve used onProgressChanged:
Thanks