Skip to content

Instantly share code, notes, and snippets.

@manuelernesto
Created August 20, 2020 19:20
Show Gist options
  • Save manuelernesto/46c7def13f2d53cf549fedc761980e77 to your computer and use it in GitHub Desktop.
Save manuelernesto/46c7def13f2d53cf549fedc761980e77 to your computer and use it in GitHub Desktop.
override fun onActivityCreated(savedInstanceState: Bundle?) {
super.onActivityCreated(savedInstanceState)
rv_room.setHasFixedSize(true)
rv_room.layoutManager = LinearLayoutManager(context)
launch {
context?.let {
val palestrantes = PalestranteDB.getDatabase(it).dao().buscarTodos()
rv_room.adapter = PalestranteAdapter(palestrantes)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment