any reason why this crashes when i click on the me...
# getting-started
c
any reason why this crashes when i click on the menu item?
Copy code
override fun onOptionsItemSelected(item: MenuItem): Boolean {
    when (item.itemId) {
        R.id.convert -> startActivity(Intent(this, unitConvert::class.java))
    }
    return super.onOptionsItemSelected(item)
}
r
I'm guessing you want to ask in #android