Searched defs:thumbLength (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/com/android/internal/widget/
H A DScrollBarUtils.java31 public static int getThumbOffset(int size, int thumbLength, int extent, int range, int offset) { argument
33 int thumbOffset = Math.round((float) (size - thumbLength) * offset / (range - extent));
34 if (thumbOffset > size - thumbLength) {
35 thumbOffset = size - thumbLength;
/frameworks/support/car/src/main/java/androidx/car/widget/
H A DPagedScrollBarView.java189 int thumbLength = calculateScrollThumbLength(range, extent);
190 int thumbOffset = calculateScrollThumbOffset(range, offset, thumbLength);
195 if (lp.height != thumbLength) {
196 lp.height = thumbLength;
223 int thumbLength = calculateScrollThumbLength(range, extent);
224 int thumbOffset = calculateScrollThumbOffset(range, offset, thumbLength);
229 if (lp.height != thumbLength) {
230 lp.height = thumbLength;
502 * @param thumbLength The current length of the thumb in pixels.
505 private int calculateScrollThumbOffset(int range, int offset, int thumbLength) { argument
[all...]

Completed in 30 milliseconds