OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bottomSelectionPixel
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/core/java/android/widget/
GridView.java
465
final int
bottomSelectionPixel
= getBottomSelectionPixel(childrenBottom,
467
final int offset =
bottomSelectionPixel
- referenceView.getBottom();
708
int
bottomSelectionPixel
= getBottomSelectionPixel(childrenBottom, fadingEdgeLength,
716
adjustForTopFadingEdge(referenceView, topSelectionPixel,
bottomSelectionPixel
);
717
adjustForBottomFadingEdge(referenceView, topSelectionPixel,
bottomSelectionPixel
);
745
int
bottomSelectionPixel
= childrenBottom;
747
bottomSelectionPixel
-= fadingEdgeLength;
749
return
bottomSelectionPixel
;
775
* @param
bottomSelectionPixel
The bottommost pixel we can draw the
779
int topSelectionPixel, int
bottomSelectionPixel
) {
[
all
...]
ListView.java
830
final int
bottomSelectionPixel
= getBottomSelectionPixel(childrenBottom, fadingEdgeLength,
837
if (sel.getBottom() >
bottomSelectionPixel
) {
844
final int spaceBelow = sel.getBottom() -
bottomSelectionPixel
;
856
final int spaceBelow =
bottomSelectionPixel
- sel.getBottom();
885
int
bottomSelectionPixel
= childrenBottom;
887
bottomSelectionPixel
-= fadingEdgeLength;
889
return
bottomSelectionPixel
;
[
all
...]
Completed in 117 milliseconds