Skip to content

Instantly share code, notes, and snippets.

@BurakDizlek
Last active November 8, 2017 15:05
Show Gist options
  • Save BurakDizlek/b8c951574091327894234666b6bc25cd to your computer and use it in GitHub Desktop.
Save BurakDizlek/b8c951574091327894234666b6bc25cd to your computer and use it in GitHub Desktop.
if (supportFragmentManager.findFragmentByTag("searchfragment") != null) { // to kill a specific Fragment
supportFragmentManager().popBackStack();
} else {
//Do Something
}
private fun closeFragments() {
repeat(supportFragmentManager.backStackEntryCount) {
supportFragmentManager.popBackStack()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment