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
481
final int
bottomSelectionPixel
= getBottomSelectionPixel(childrenBottom,
483
final int offset =
bottomSelectionPixel
- referenceView.getBottom();
724
int
bottomSelectionPixel
= getBottomSelectionPixel(childrenBottom, fadingEdgeLength,
732
adjustForTopFadingEdge(referenceView, topSelectionPixel,
bottomSelectionPixel
);
733
adjustForBottomFadingEdge(referenceView, topSelectionPixel,
bottomSelectionPixel
);
761
int
bottomSelectionPixel
= childrenBottom;
763
bottomSelectionPixel
-= fadingEdgeLength;
765
return
bottomSelectionPixel
;
791
* @param
bottomSelectionPixel
The bottommost pixel we can draw the
795
int topSelectionPixel, int
bottomSelectionPixel
) {
[
all
...]
ListView.java
837
final int
bottomSelectionPixel
= getBottomSelectionPixel(childrenBottom, fadingEdgeLength,
844
if (sel.getBottom() >
bottomSelectionPixel
) {
851
final int spaceBelow = sel.getBottom() -
bottomSelectionPixel
;
863
final int spaceBelow =
bottomSelectionPixel
- sel.getBottom();
892
int
bottomSelectionPixel
= childrenBottom;
894
bottomSelectionPixel
-= fadingEdgeLength;
896
return
bottomSelectionPixel
;
[
all
...]
Completed in 8164 milliseconds