Searched defs:childInSelectedRow (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DGridView.java794 * @param childInSelectedRow A child in the row that contains the selection
799 private void adjustForBottomFadingEdge(View childInSelectedRow, argument
803 if (childInSelectedRow.getBottom() > bottomSelectionPixel) {
807 int spaceAbove = childInSelectedRow.getTop() - topSelectionPixel;
811 int spaceBelow = childInSelectedRow.getBottom() - bottomSelectionPixel;
823 * @param childInSelectedRow A child in the row that contains the selection
828 private void adjustForTopFadingEdge(View childInSelectedRow, argument
831 if (childInSelectedRow.getTop() < topSelectionPixel) {
834 int spaceAbove = topSelectionPixel - childInSelectedRow.getTop();
838 int spaceBelow = bottomSelectionPixel - childInSelectedRow
[all...]

Completed in 24 milliseconds