Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. class MainActivity : AppCompatActivity(), NavigationView.OnNavigationItemSelectedListener {
  2.  
  3. val mNavigationView = findViewById<View>(R.id.nav_view) as NavigationView
  4. mNavigationView.setNavigationItemSelectedListener(this)
  5.  
  6. override fun onNavigationItemSelected(item: MenuItem): Boolean {
  7. Log.d(LOG_TAG, "hello there")
  8. return true
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement