Reputation: 857
Is there a way to use Holo theme in android 2.3 without using actionBar with it. I tried using Holoeverywhere library but it is showing actionbarbar as well. Also I want the Holo UI same throughout the app no matter which OS version user is on (2.3.3 and above)
Upvotes: 1
Views: 1197
Reputation: 945
Apply theme Holo.Theme.NoActionBar
on activity. For decrease a memory leak you can disable abs by setting requireSherlock = false
in onCreateConfig
, like in demo.
Upvotes: 1