Searched defs:selectorIndex (Results 1 - 1 of 1) sorted by last modified time

/frameworks/base/core/java/android/widget/
H A DNumberPicker.java1531 int selectorIndex = selectorIndices[i];
1532 String scrollSelectorValue = mSelectorIndexToStringCache.get(selectorIndex);
1635 int selectorIndex = current + (i - SELECTOR_MIDDLE_ITEM_INDEX);
1637 selectorIndex = getWrappedSelectorIndex(selectorIndex);
1639 selectorIndices[i] = selectorIndex;
1767 * @return The wrapped index <code>selectorIndex</code> value.
1769 private int getWrappedSelectorIndex(int selectorIndex) { argument
1770 if (selectorIndex > mMaxValue) {
1771 return mMinValue + (selectorIndex
1814 ensureCachedScrollSelectorValue(int selectorIndex) argument
[all...]

Completed in 57 milliseconds