Searched refs:bottomSelectionPixel (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/core/java/android/widget/ |
D | GridView.java | 481 final int bottomSelectionPixel = getBottomSelectionPixel(childrenBottom, in fillSelection() local 483 final int offset = bottomSelectionPixel - referenceView.getBottom(); in fillSelection() 724 int bottomSelectionPixel = getBottomSelectionPixel(childrenBottom, fadingEdgeLength, in fillFromSelection() local 732 adjustForTopFadingEdge(referenceView, topSelectionPixel, bottomSelectionPixel); in fillFromSelection() 733 adjustForBottomFadingEdge(referenceView, topSelectionPixel, bottomSelectionPixel); in fillFromSelection() 761 int bottomSelectionPixel = childrenBottom; in getBottomSelectionPixel() local 763 bottomSelectionPixel -= fadingEdgeLength; in getBottomSelectionPixel() 765 return bottomSelectionPixel; in getBottomSelectionPixel() 795 int topSelectionPixel, int bottomSelectionPixel) { in adjustForBottomFadingEdge() argument 798 if (childInSelectedRow.getBottom() > bottomSelectionPixel) { in adjustForBottomFadingEdge() [all …]
|
D | ListView.java | 837 final int bottomSelectionPixel = getBottomSelectionPixel(childrenBottom, fadingEdgeLength, in fillFromSelection() local 844 if (sel.getBottom() > bottomSelectionPixel) { in fillFromSelection() 851 final int spaceBelow = sel.getBottom() - bottomSelectionPixel; in fillFromSelection() 863 final int spaceBelow = bottomSelectionPixel - sel.getBottom(); in fillFromSelection() 892 int bottomSelectionPixel = childrenBottom; in getBottomSelectionPixel() local 894 bottomSelectionPixel -= fadingEdgeLength; in getBottomSelectionPixel() 896 return bottomSelectionPixel; in getBottomSelectionPixel() 962 final int bottomSelectionPixel = getBottomSelectionPixel(childrenTop, fadingEdgeLength, in moveSelection() local 997 if (sel.getBottom() > bottomSelectionPixel) { in moveSelection() 1003 int spaceBelow = sel.getBottom() - bottomSelectionPixel; in moveSelection() [all …]
|