Searched refs:topSelectionPixel (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/core/java/android/widget/ |
D | GridView.java | 493 final int topSelectionPixel = getTopSelectionPixel(childrenTop, fadingEdgeLength, rowStart); in fillSelection() local 495 final View sel = makeRow(mStackFromBottom ? rowEnd : rowStart, topSelectionPixel, true); in fillSelection() 748 int topSelectionPixel = getTopSelectionPixel(childrenTop, fadingEdgeLength, rowStart); in fillFromSelection() local 757 adjustForTopFadingEdge(referenceView, topSelectionPixel, bottomSelectionPixel); in fillFromSelection() 758 adjustForBottomFadingEdge(referenceView, topSelectionPixel, bottomSelectionPixel); in fillFromSelection() 803 int topSelectionPixel = childrenTop; in getTopSelectionPixel() local 805 topSelectionPixel += fadingEdgeLength; in getTopSelectionPixel() 807 return topSelectionPixel; in getTopSelectionPixel() 820 int topSelectionPixel, int bottomSelectionPixel) { in adjustForBottomFadingEdge() argument 827 int spaceAbove = childInSelectedRow.getTop() - topSelectionPixel; in adjustForBottomFadingEdge() [all …]
|
D | ListView.java | 931 final int topSelectionPixel = getTopSelectionPixel(childrenTop, fadingEdgeLength, in fillFromSelection() local 943 final int spaceAbove = sel.getTop() - topSelectionPixel; in fillFromSelection() 952 } else if (sel.getTop() < topSelectionPixel) { in fillFromSelection() 955 final int spaceAbove = topSelectionPixel - sel.getTop(); in fillFromSelection() 1005 int topSelectionPixel = childrenTop; in getTopSelectionPixel() local 1007 topSelectionPixel += fadingEdgeLength; in getTopSelectionPixel() 1009 return topSelectionPixel; in getTopSelectionPixel() 1056 final int topSelectionPixel = getTopSelectionPixel(childrenTop, fadingEdgeLength, in moveSelection() local 1096 int spaceAbove = sel.getTop() - topSelectionPixel; in moveSelection() 1155 if (sel.getTop() < topSelectionPixel) { in moveSelection() [all …]
|