Package com.maxkeppeler.sheets.core.layoutmanagers

Types

Link copied to clipboard
class CustomGridLayoutManager(    ctx: Context,     columns: Int,     scrollable: Boolean,     orientation: Int = RecyclerView.VERTICAL) : GridLayoutManager

Custom implementation of GridLayoutManager with more control.

Link copied to clipboard
class CustomLinearLayoutManager(    context: Context,     scrollable: Boolean = false,     orientation: Int = RecyclerView.VERTICAL,     reverseLayout: Boolean = false) : LinearLayoutManager

Custom implementation of LinearLayoutManager with more control.

Link copied to clipboard
class CustomStaggeredGridLayoutManager(    columns: Int,     orientation: Int = RecyclerView.VERTICAL,     scrollable: Boolean = true) : StaggeredGridLayoutManager

Custom implementation of StaggeredGridLayoutManager with more control.