mirror of
https://github.com/gabehf/tempus.git
synced 2026-03-11 00:10:35 -07:00
13 lines
324 B
Java
13 lines
324 B
Java
package com.cappielloantonio.play.util;
|
|
|
|
public class UIUtil {
|
|
public static int getSpanCount(int itemCount, int maxSpan) {
|
|
int itemSize = itemCount == 0 ? 1 : itemCount;
|
|
|
|
if (itemSize / maxSpan > 0) {
|
|
return maxSpan;
|
|
} else {
|
|
return itemSize % maxSpan;
|
|
}
|
|
}
|
|
}
|