Skip to content

Instantly share code, notes, and snippets.

@navi25
Created January 16, 2019 02:02
Show Gist options
  • Save navi25/d7c6789991594a72017eba288da0a72b to your computer and use it in GitHub Desktop.
Save navi25/d7c6789991594a72017eba288da0a72b to your computer and use it in GitHub Desktop.
class MovieActivity : AppCompatActivity(){
private lateinit var tmdbViewModel: TmdbViewModel
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_movie)
tmdbViewModel = ViewModelProviders.of(this).get(TmdbViewModel::class.java)
tmdbViewModel.fetchMovies()
tmdbViewModel.popularMovies.observe(this, Observer {
//TODO - Your Update UI Logic
})
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment