Created
July 10, 2021 02:02
-
-
Save navczydev/6aee0425f1e57cb24532aa2842f5587f to your computer and use it in GitHub Desktop.
This file contains 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
activityMainBinding.navigationRail?.setOnItemSelectedListener { item -> | |
when (item.itemId) { | |
R.id.alarms -> { | |
Toast.makeText(this, "Alarms Clicked", Toast.LENGTH_SHORT).show() | |
true | |
} | |
else -> { | |
Toast.makeText(this, "Other item clicked", Toast.LENGTH_SHORT).show() | |
true | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment