> I am using SeekBar in my application, currently seek bar minimum value > is zero, but as per application requirement seek bar value should not > be zero.
Use arithmetic to adjust your application-required value. For example, suppose you have data values from -40 to 100 you want to display on the SeekBar. Set the SeekBar's maximum to be 140 (100-(-40)), then add 40 to the raw value to get the number you should use when setting the bar position. > how to set minimum value for SeekBar. The minimum value is 0 and cannot be changed, other than for you to build your own SeekBar. -- Mark Murphy (a Commons Guy) http://commonsware.com _The Busy Coder's Guide to Android Development_ Version 2.0 Available! --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Beginners" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en -~----------~----~----~----~------~----~------~--~---

