SeekBar to display decimal number on edittext
I need the seekbar to have 2 decimal spot, to go from 20,00 to 20.000,00 (example to have also 100,58) now only '00' on the decimal spot
This is my seekbar code: it works but has no decimal
private fun seekBarProgress() {
binding.includeFirstSeekbar.seekBar.setMax(20000)
binding.includeFirstSeekbar.seekBar.setMin(20)
binding.includeFirstSeekbar.seekBar.setOnSeekBarChangeListener(object : OnSeekBarChangeListener {
override fun...