add width and height to listview for browseCatalogueController (#2406)

* add width and height to listview for browseCatalogueController

* readd recycler has fixed size
add width and height to list view
This commit is contained in:
Carlos 2019-12-28 14:57:44 -05:00 committed by arkon
parent 10e7a3b35b
commit f0053a2f78

View File

@ -175,6 +175,7 @@ open class BrowseCatalogueController(bundle: Bundle) :
RecyclerView(view.context).apply {
id = R.id.recycler
layoutManager = LinearLayoutManager(context)
layoutParams = RecyclerView.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT)
addItemDecoration(DividerItemDecoration(context, DividerItemDecoration.VERTICAL))
}
} else {
@ -195,6 +196,7 @@ open class BrowseCatalogueController(bundle: Bundle) :
}
}
}
recycler.setHasFixedSize(true)
recycler.adapter = adapter
catalogue_view.addView(recycler, 1)