Skip to content

Instantly share code, notes, and snippets.

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