CustomSeekBar: fix progressbar glitch with custom min-max values

when CustomSeekBar is called, it does:
mSeekBar.setMax(mMax - mMin);
assuming mMin=0 and mMax=100 if they are not set with settings:min or max
through the related menu xml.
So if we set one of those values in the related menu java class with the
available public voids (setMax(value) and setMin(value)) the seekbar doesn't
get the new min and max thus the user can't slide it to the max position.

To reply:
- set settings:max (or android:max according to your customseekbar implementation)
to the wanted value, e.g. 255;
- set the min value through your menu java class with CustomSeekBarPreference.setMin(value);
- try to move the progressbar thumb to the max position, it won't reach it.

Change-Id: I3644202017bf169fce1061e1d2a8e70a8c14b326
1 file changed
tree: 86b16dfa7c411aebfebe8a5d91d6221e287feab1
  1. res/
  2. src/
  3. .gitreview
  4. Android.bp
  5. AndroidManifest.xml
  6. common.mk