mirror of
https://github.com/gabehf/tempus.git
synced 2026-03-07 21:48:17 -08:00
34 lines
1.1 KiB
Java
34 lines
1.1 KiB
Java
package com.cappielloantonio.tempo.util;
|
|
|
|
import android.content.Context;
|
|
import android.content.res.TypedArray;
|
|
import android.graphics.drawable.Drawable;
|
|
import android.graphics.drawable.InsetDrawable;
|
|
|
|
import androidx.recyclerview.widget.DividerItemDecoration;
|
|
|
|
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;
|
|
}
|
|
}
|
|
|
|
public static DividerItemDecoration getDividerItemDecoration(Context context) {
|
|
int[] ATTRS = new int[]{android.R.attr.listDivider};
|
|
|
|
TypedArray a = context.obtainStyledAttributes(ATTRS);
|
|
Drawable divider = a.getDrawable(0);
|
|
InsetDrawable insetDivider = new InsetDrawable(divider, 42, 0, 42, 42);
|
|
a.recycle();
|
|
|
|
DividerItemDecoration itemDecoration = new DividerItemDecoration(context, DividerItemDecoration.VERTICAL);
|
|
itemDecoration.setDrawable(insetDivider);
|
|
|
|
return itemDecoration;
|
|
}
|
|
}
|