Seekbar progress is an int type so u have to change the progress value by float value by dividing Progress/1000.0
is as follows.
here is the java code:
public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser)
{
edit1=(EditText)findViewById(R.id.edit1);
float value= (float) (progress / 1000.0);
edit1.setText((value)+"\n");
}
And layout u first try it as android:max="99"
The progress value will increment by 0.001 as you required upto the max value you can see those values in the edittext.