ActionBar logo keep centered. How to make it left aligned without using ToolBar?
I am using action bar and I put logo as png image there but the logo keep being centered and I want it to be left aligned. The action bar and logo code is pretty much as follows:
(activity as AppCompatActivity).supportActionBar?.setLogo(R.drawable.gesit_toolbar)
(activity as AppCompatActivity).supportActionBar?.setDisplayUseLogoEnabled(true)
(activity as AppCompatActivity).supportActionBar?.setDisplayShowHomeEnabled(true)
(activity as...