I'm using SeekBar as a slider because I can't find anything else, but I have to do so much hacky work because it doesn't allow me to set a minimum value or go in between ints. So, any time I need a slider to start at a value other than 0 or return a floating point number, I have to set a max value that doesn't describe the true max value of the control and then divide and/or add/subtract the "progress" value when I read it. Before I finish writing an entire class just to handle converting my slider values, is there a better way? I'm using Android 1.6...is there a slider control in 2.0 or any other documented future release?

link|improve this question

64% accept rate
1  
Upvoted, because they really do need something better than SeekBar. Hope we get a UISlider equivalent in the future. – Ben Gotow Jan 21 '10 at 19:48
@Ben I agree! We need a nice slider! – Sheikh Aman Dec 13 '10 at 7:19
feedback

2 Answers

Before I finish writing an entire class just to handle converting my slider values, is there a better way?

Not really. For starters, you really don't want something like SeekBar doing floating-point arithmetic along the way, as most phones lack floating-point support in hardware, so floating-point operations are slow. As to why they didn't allow you to set your own custom minimum, instead of just the maximum, I cannot say.

link|improve this answer
For now, I wrote a class that acts like a "view model" with constants and helper methods. I use "offset" constants to add/subtract where the min value would be non-zero, I call the other constants "conversion factors" to multiply and divide to emulate my floats, and I created setters to handle the conversions and offsets from the actual progress values. It's clean looking at the class level, but ugly as sin in theory and more work than I would expect to do. I'll see what the process is for adding custom attributes to derived controls and maybe I can just compose or extend it. – Rich Nov 20 '09 at 3:29
feedback

I you like to use seek bar means, you can get the code from this site http://android-codes-examples.blogspot.com/2011/05/seek-bar-or-progress-bar-or-slide-bar.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.