Home | History | Annotate | Download | only in widget

Lines Matching defs:amountToScroll

2709         int amountToScroll = amountToScroll(direction, nextSelectedPosition);
2715 amountToScroll = focusResult.getAmountToScroll();
2737 if (amountToScroll > 0) {
2738 scrollListItemsBy((direction == View.FOCUS_UP) ? amountToScroll : -amountToScroll);
2919 private int amountToScroll(int direction, int nextSelectedPosition) {
2954 int amountToScroll = (viewToMakeVisible.getBottom() - goalBottom);
2959 amountToScroll = Math.min(amountToScroll, max);
2962 return Math.min(amountToScroll, getMaxScrollAmount());
2991 int amountToScroll = (goalTop - viewToMakeVisible.getTop());
2995 amountToScroll = Math.min(amountToScroll, max);
2997 return Math.min(amountToScroll, getMaxScrollAmount());
3011 void populate(int selectedPosition, int amountToScroll) {
3013 mAmountToScroll = amountToScroll;
3189 int amountToScroll = 0;
3194 amountToScroll = mListPadding.top - mTempRect.top;
3196 amountToScroll += getArrowScrollPreviewLength();
3202 amountToScroll = mTempRect.bottom - listBottom;
3204 amountToScroll += getArrowScrollPreviewLength();
3208 return amountToScroll;