I have a seekbar and trying to set the value from 60 to 180 for one and 40 to 190 for the second one in step of 1.
sb1 = (SeekBar) findViewById(R.id.progress
Set seekbar max and min value
seekbar have method that setmax(int position) and setProgress(int position)
thanks