<How to get selection in MaterialButtonToggleGroup...
# stackoverflow
u
How to get selection in MaterialButtonToggleGroup from inside Recycler View? I have a toggle group in a xml layout that is put into a recycler view This is backed by a viewmodel class ModeViewModel(val modes: Array) : ItemViewModel { override val layoutId: Int = R.layout.item_mode override val viewType: Int = DetailsViewModel.MODE_ITEM } And handled with an adapter class BindableRecyclerViewAdapter : RecyclerView.Adapter() { var itemViewModels: List = emptyList() private val...