MCPcopy Create free account
hub / github.com/codenameone/CodenameOne / getGridPosY

Method getGridPosY

CodenameOne/src/com/codename1/ui/List.java:2229–2234  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

2227
2228 /// {@inheritDoc}
2229 @Override
2230 protected int getGridPosY() {
2231 int gridSize = getElementSize(false, true).getHeight() + itemGap;
2232 int scroll = getScrollY();
2233 return calcGrid(scroll, gridSize);
2234 }
2235
2236 private int calcGrid(int scroll, int gridSize) {
2237 int fraction = scroll % gridSize;

Callers 1

testGridPositionMethod · 0.45

Calls 4

getElementSizeMethod · 0.95
calcGridMethod · 0.95
getHeightMethod · 0.65
getScrollYMethod · 0.65

Tested by 1

testGridPositionMethod · 0.36