Fix artist cover visualization
This commit is contained in:
14
app/src/main/java/com/cappielloantonio/play/util/UIUtil.java
Normal file
14
app/src/main/java/com/cappielloantonio/play/util/UIUtil.java
Normal file
@@ -0,0 +1,14 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user