-
-
Save KaustubhPatange/0f44e4005a642a83d923aa8003447e69 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
class MainActivity : BackPressCompatActivity() { | |
override fun onCreate(...) { | |
setOnBackPressListener { handleBackPress() } | |
... | |
} | |
private fun handleBackPress(): Boolean { | |
// perform action | |
... | |
if (shouldClose()) { | |
return true | |
} | |
return false | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment