Skip to content

Instantly share code, notes, and snippets.

@ininmm
Created July 18, 2019 01:51
Show Gist options
  • Save ininmm/5a317aac862353c7404afe3aabd30741 to your computer and use it in GitHub Desktop.
Save ininmm/5a317aac862353c7404afe3aabd30741 to your computer and use it in GitHub Desktop.
Databinding.bind
override fun onCreateView(
inflater: LayoutInflater,
container: ViewGroup?,
savedInstanceState: Bundle?
): View? {
val view = inflater.inflate(R.layout.tasks_frag, container, false)
viewDataBinding = TaskdetailFragBinding.bind(view).apply {
viewmodel = viewModel
}
...
...
return view
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment