Created
July 10, 2019 00:29
-
-
Save juliuscanute/fe4e86aa9636329d6ba1c334ebe4aaed to your computer and use it in GitHub Desktop.
Word List Fragment
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class WordListFragment : Fragment() { | |
//... | |
override fun onViewCreated(view: View, savedInstanceState: Bundle?) { | |
super.onViewCreated(view, savedInstanceState) | |
mainActivityViewModel.words.observe(this, Observer { | |
meaningAdapter.submitList(it) | |
}) | |
//... | |
} | |
//... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment