When you override the onCreateOptionsMenu()
you get a options menu which opens when you click the 3 dot icon on top right. I want to show a circular image view with image of a user instead of the 3 dot icon. How do I do this?
override fun onCreateOptionsMenu(menu: Menu?): Boolean {
menuInflater.inflate(R.menu.options_menu, menu);
return true
}