HI All
, i want to giv max and minimum limit of seekbar to 50 and 20 respectively. seekbar has a direct option top provide max value,but how can i set its minimum value to 20 rather than 0?? regards
HI All
, i want to giv max and minimum limit of seekbar to 50 and 20 respectively. seekbar has a direct option top provide max value,but how can i set its minimum value to 20 rather than 0?? regards
Set the max value to 30 and add 20 to values you read from the seekbar :)
In SeekBar you can set only max value.
<SeekBar android:id="@+id/SeekBar01"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:max="50"/>
And, You cannot directly set the minimum value to the seekbar.
SeekBar mSeekbar = (SeekBar) findViewById(R.id.SeekBar01);
mSeekbar.setOnSeekBarChangeListener(new OnSeekBarChangeListener()
{
public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser)
{
length_edit.setText(Integer.toString(progress + 20));
}
public void onStartTrackingTouch(SeekBar seekBar) {}
public void onStopTrackingTouch(SeekBar seekBar) {}
});
As you see min progress you can sum with min which I would like - in your case 20.
Enjoy !!!!