Searched refs:bottomSelectionPixel (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/core/java/android/widget/ |
D | GridView.java | 506 final int bottomSelectionPixel = getBottomSelectionPixel(childrenBottom, in fillSelection() local 508 final int offset = bottomSelectionPixel - referenceView.getBottom(); in fillSelection() 749 int bottomSelectionPixel = getBottomSelectionPixel(childrenBottom, fadingEdgeLength, in fillFromSelection() local 757 adjustForTopFadingEdge(referenceView, topSelectionPixel, bottomSelectionPixel); in fillFromSelection() 758 adjustForBottomFadingEdge(referenceView, topSelectionPixel, bottomSelectionPixel); in fillFromSelection() 786 int bottomSelectionPixel = childrenBottom; in getBottomSelectionPixel() local 788 bottomSelectionPixel -= fadingEdgeLength; in getBottomSelectionPixel() 790 return bottomSelectionPixel; in getBottomSelectionPixel() 820 int topSelectionPixel, int bottomSelectionPixel) { in adjustForBottomFadingEdge() argument 823 if (childInSelectedRow.getBottom() > bottomSelectionPixel) { in adjustForBottomFadingEdge() [all …]
|
D | ListView.java | 931 final int bottomSelectionPixel = getBottomSelectionPixel(childrenBottom, fadingEdgeLength, in fillFromSelection() local 938 if (sel.getBottom() > bottomSelectionPixel) { in fillFromSelection() 945 final int spaceBelow = sel.getBottom() - bottomSelectionPixel; in fillFromSelection() 957 final int spaceBelow = bottomSelectionPixel - sel.getBottom(); in fillFromSelection() 986 int bottomSelectionPixel = childrenBottom; in getBottomSelectionPixel() local 988 bottomSelectionPixel -= fadingEdgeLength; in getBottomSelectionPixel() 990 return bottomSelectionPixel; in getBottomSelectionPixel() 1056 final int bottomSelectionPixel = getBottomSelectionPixel(childrenTop, fadingEdgeLength, in moveSelection() local 1091 if (sel.getBottom() > bottomSelectionPixel) { in moveSelection() 1097 int spaceBelow = sel.getBottom() - bottomSelectionPixel; in moveSelection() [all …]
|