Search code examples
androidandroid-holo-everywhere

Implementing Holoeverywhere theme without ActionBarSherlock in my Android app


I am trying to implement the holoeverywhere theme in my app.

When I implement the holoeverywhere theme, I get a actionbar by default. I think it is because of Actionbarsherlock library. I was not aware of this library and have implemented my own actionbar of sorts. So, how do I disable the actionbar that comes up now.

If you need any relevant portions of my code, please let me know. Thanks


Solution

  • In the HoloEverywhere library included in my project, in the res>values>styles.xml file, there is a theme called Holo.Theme.Light.NoActionBar. I use that instead of Holo.Theme.Light which I used earlier. This fixed the issue. Thanks.