Skip to content

Instantly share code, notes, and snippets.

@Div-e-Sepid
Created July 6, 2020 08:12
Show Gist options
  • Save Div-e-Sepid/ed7129eec9c1576071656a7e7a534a82 to your computer and use it in GitHub Desktop.
Save Div-e-Sepid/ed7129eec9c1576071656a7e7a534a82 to your computer and use it in GitHub Desktop.
fun AppCompatActivity.setAsActionBar(toolbar: Toolbar) {
setSupportActionBar(toolbar)
supportActionBar!!.setDisplayHomeAsUpEnabled(true)
supportActionBar!!.setDisplayShowHomeEnabled(true)
toolbar.setNavigationOnClickListener { onBackPressed() }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment