Skip to content

Instantly share code, notes, and snippets.

@akueisara
Created April 20, 2020 11:27
Show Gist options
  • Save akueisara/3c3c978aee7cee39185795cbd978f645 to your computer and use it in GitHub Desktop.
Save akueisara/3c3c978aee7cee39185795cbd978f645 to your computer and use it in GitHub Desktop.
An extension function to click on the navigation button
fun <T : Activity> ActivityScenario<T>.getToolbarNavigationContentDescription(): String {
var description = ""
onActivity {
description = it.findViewById<Toolbar>(R.id.toolbar).navigationContentDescription as String
}
return description
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment