Searched refs:topSelectionPixel (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/core/java/android/widget/ |
D | GridView.java | 473 final int topSelectionPixel = getTopSelectionPixel(childrenTop, fadingEdgeLength, rowStart); in fillSelection() local 475 final View sel = makeRow(mStackFromBottom ? rowEnd : rowStart, topSelectionPixel, true); in fillSelection() 728 int topSelectionPixel = getTopSelectionPixel(childrenTop, fadingEdgeLength, rowStart); in fillFromSelection() local 737 adjustForTopFadingEdge(referenceView, topSelectionPixel, bottomSelectionPixel); in fillFromSelection() 738 adjustForBottomFadingEdge(referenceView, topSelectionPixel, bottomSelectionPixel); in fillFromSelection() 783 int topSelectionPixel = childrenTop; in getTopSelectionPixel() local 785 topSelectionPixel += fadingEdgeLength; in getTopSelectionPixel() 787 return topSelectionPixel; in getTopSelectionPixel() 800 int topSelectionPixel, int bottomSelectionPixel) { in adjustForBottomFadingEdge() argument 807 int spaceAbove = childInSelectedRow.getTop() - topSelectionPixel; in adjustForBottomFadingEdge() [all …]
|
D | ListView.java | 841 final int topSelectionPixel = getTopSelectionPixel(childrenTop, fadingEdgeLength, in fillFromSelection() local 853 final int spaceAbove = sel.getTop() - topSelectionPixel; in fillFromSelection() 862 } else if (sel.getTop() < topSelectionPixel) { in fillFromSelection() 865 final int spaceAbove = topSelectionPixel - sel.getTop(); in fillFromSelection() 915 int topSelectionPixel = childrenTop; in getTopSelectionPixel() local 917 topSelectionPixel += fadingEdgeLength; in getTopSelectionPixel() 919 return topSelectionPixel; in getTopSelectionPixel() 966 final int topSelectionPixel = getTopSelectionPixel(childrenTop, fadingEdgeLength, in moveSelection() local 1006 int spaceAbove = sel.getTop() - topSelectionPixel; in moveSelection() 1065 if (sel.getTop() < topSelectionPixel) { in moveSelection() [all …]
|