Hello,
I have an options panel that allows setting of keyboard sensivity. I
use SeekBar to get the sensivity but it never reaches the max end.
There is the code:
final SeekBar seekBarKeyboardSens = (SeekBar)findViewById
(R.id.SeekBarKeyboardSens);
seekBarKeyboardSens.setMax(10);
seekBarKeyboardSens.setProgress(keyboardSensivity);
seekBarKeyboardSens.setOnSeekBarChangeListener(new
OnSeekBarChangeListener()
{
@Override
public void onProgressChanged(SeekBar arg0, int arg1, boolean arg2)
{
keyboardSensivity = arg1;
}
// other overrides
});
Max value I got is 8...
Has anyone solved that problem?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" 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-developers?hl=en
-~----------~----~----~----~------~----~------~--~---