Change hamburger menu from drawable to imageview
I am building an app using a side menu and using supportActionBar to access to it
supportActionBar?.setHomeAsUpIndicator(R.drawable.ic_hamburger)
I would like to review the R.drawable.ic_hamburger by a layout with an ImageView. The goal is to display a circle shape profile picture instead of a standard icon.
I cannot find a good solution.
Any idea?
Thanks